diff --git a/CHANGELOG.md b/CHANGELOG.md index b20a2deb1..d811466ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 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 diff --git a/geojson.cpp b/geojson.cpp index b16223653..87acc5374 100644 --- a/geojson.cpp +++ b/geojson.cpp @@ -20,6 +20,7 @@ #include #include #include +#include #include #include #include @@ -184,7 +185,7 @@ long long parse_geometry(int t, json_object *j, long long *bbox, drawvec &out, i return g; } -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; @@ -425,6 +426,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])) { @@ -575,7 +603,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; @@ -643,7 +671,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; } @@ -686,10 +714,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); @@ -701,7 +729,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 c0400686c..d108fdb20 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/main.cpp b/main.cpp index 436af2259..8870800c9 100644 --- a/main.cpp +++ b/main.cpp @@ -372,7 +372,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; @@ -385,11 +385,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]; @@ -431,6 +435,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"); @@ -445,6 +452,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); } } @@ -476,6 +486,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) { @@ -497,7 +510,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) { @@ -514,7 +527,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. @@ -553,6 +566,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"); @@ -1173,6 +1189,8 @@ int read_input(std::vector &sources, char *fname, int &maxzoom, int minz } 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++) { @@ -1235,7 +1253,7 @@ int read_input(std::vector &sources, char *fname, int &maxzoom, int minz } 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); @@ -1311,7 +1329,7 @@ int read_input(std::vector &sources, char *fname, int &maxzoom, int minz } 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; @@ -1348,7 +1366,7 @@ int read_input(std::vector &sources, char *fname, int &maxzoom, int minz 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) { @@ -1365,7 +1383,7 @@ int read_input(std::vector &sources, char *fname, int &maxzoom, int minz 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); @@ -1618,6 +1636,11 @@ int read_input(std::vector &sources, char *fname, int &maxzoom, int minz } } + 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 @@ -1625,7 +1648,8 @@ int read_input(std::vector &sources, char *fname, int &maxzoom, int minz // 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) { @@ -1638,9 +1662,25 @@ int read_input(std::vector &sources, char *fname, int &maxzoom, int minz 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) { diff --git a/tests/knox/in.json b/tests/knox/in.json new file mode 100644 index 000000000..c75cad8a4 --- /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 000000000..c5185c4fb --- /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 000000000..3eb97843d --- /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/ne_110m_admin_0_countries/out/-zg_-yname.json b/tests/ne_110m_admin_0_countries/out/-zg_-yname.json index 281eede3c..3549140d9 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.cpp b/tile.cpp index 3056d570b..ed724c496 100644 --- a/tile.cpp +++ b/tile.cpp @@ -1834,7 +1834,7 @@ 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 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; } } diff --git a/version.hpp b/version.hpp index 47d623148..58c8e9422 100644 --- a/version.hpp +++ b/version.hpp @@ -1 +1 @@ -#define VERSION "tippecanoe v1.18.2\n" +#define VERSION "tippecanoe v1.19.0\n"