From c7d146ea4865a0461c184fe409044b76e1576c9d Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Tue, 30 May 2017 16:58:56 -0700 Subject: [PATCH] Don't do work for guessing maxzoom unless needed. Add a better test. --- geojson.cpp | 54 +- geojson.hpp | 3 +- main.cpp | 17 +- tests/knox/in.json | 53 ++ tests/knox/out/-zg.json | 1144 ++++++++++++++++++++++++++++++++++++ tests/knox/out/-zg_-P.json | 1144 ++++++++++++++++++++++++++++++++++++ 6 files changed, 2381 insertions(+), 34 deletions(-) create mode 100644 tests/knox/in.json create mode 100644 tests/knox/out/-zg.json create mode 100644 tests/knox/out/-zg_-P.json diff --git a/geojson.cpp b/geojson.cpp index dc25b1e..87acc53 100644 --- a/geojson.cpp +++ b/geojson.cpp @@ -185,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, double *dist_sum, size_t *dist_count) { +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; @@ -426,30 +426,32 @@ int serialize_geometry(json_object *geometry, json_object *properties, json_obje dv = fix_polygon(dv); } - 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)); + 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++; + 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; + 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; + *dist_sum += log(dist_ft) * n; + *dist_count += n; + } + locs.clear(); } - locs.clear(); bool inline_meta = true; // Don't inline metadata for features that will span several tiles at maxzoom @@ -601,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, double *dist_sum, size_t *dist_count) { +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; @@ -669,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, dist_sum, dist_count); + 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; } @@ -712,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, dist_sum, dist_count); + 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, dist_sum, dist_count); + 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); @@ -727,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, pja->dist_sum, pja->dist_count); + 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 6b9f65a..d108fdb 100644 --- a/geojson.hpp +++ b/geojson.hpp @@ -31,10 +31,11 @@ struct parse_json_args { 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, double *dist_sum, size_t *dist_count); +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 18b4c8e..8870800 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, double *dist_sum, size_t *dist_count) { +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; @@ -437,6 +437,7 @@ void do_read_parallel(char *map, long long len, long long initial_offset, const 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"); @@ -487,6 +488,7 @@ struct read_parallel_arg { std::map const *attribute_types; double *dist_sum; size_t *dist_count; + bool want_dist; }; void *run_read_parallel(void *v) { @@ -508,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, rpa->dist_sum, rpa->dist_count); + 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) { @@ -525,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, double *dist_sum, size_t *dist_count) { +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. @@ -566,6 +568,7 @@ void start_parsing(int fd, FILE *fp, long long offset, long long len, volatile i 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"); @@ -1250,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, &dist_sum, &dist_count); + 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); @@ -1326,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, &dist_sum, &dist_count); + 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; @@ -1363,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, &dist_sum, &dist_count); + 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) { @@ -1380,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, &dist_sum, &dist_count); + 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); diff --git a/tests/knox/in.json b/tests/knox/in.json new file mode 100644 index 0000000..c75cad8 --- /dev/null +++ b/tests/knox/in.json @@ -0,0 +1,53 @@ +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.56409, 38.490846 ], [ -87.564081, 38.490938 ], [ -87.564075, 38.490997 ], [ -87.564073, 38.49103 ], [ -87.564033, 38.491451 ], [ -87.564023, 38.491558 ], [ -87.564016, 38.491603 ], [ -87.563955, 38.491998 ], [ -87.563772, 38.493184 ], [ -87.563712, 38.49358 ], [ -87.563507, 38.494913 ], [ -87.56294, 38.498603 ], [ -87.562902, 38.498913 ], [ -87.562743, 38.500253 ], [ -87.562491, 38.502023 ], [ -87.562274, 38.503445 ], [ -87.561613, 38.507803 ], [ -87.561436, 38.508642 ], [ -87.561122, 38.509605 ], [ -87.56096, 38.509998 ], [ -87.560558, 38.510787 ], [ -87.560066, 38.511576 ], [ -87.55979, 38.511955 ], [ -87.559344, 38.512487 ], [ -87.559234, 38.51262 ], [ -87.55887, 38.512993 ], [ -87.558076, 38.513721 ], [ -87.55691, 38.514593 ], [ -87.556005, 38.515135 ], [ -87.555464, 38.515422 ], [ -87.55497, 38.515648 ], [ -87.548944, 38.518413 ], [ -87.546936, 38.519335 ], [ -87.545311, 38.52008 ], [ -87.54281, 38.521229 ], [ -87.542465, 38.5214 ], [ -87.541758, 38.521817 ], [ -87.541405, 38.522054 ], [ -87.540704, 38.522598 ], [ -87.54064, 38.52266 ], [ -87.540052, 38.523236 ], [ -87.539622, 38.523724 ], [ -87.539431, 38.523973 ], [ -87.539407, 38.524003 ], [ -87.539335, 38.524096 ], [ -87.539312, 38.524127 ], [ -87.539022, 38.524579 ], [ -87.538822, 38.524974 ], [ -87.538632, 38.525431 ], [ -87.538489, 38.525779 ], [ -87.538243, 38.526728 ], [ -87.538144, 38.527559 ], [ -87.538151, 38.529329 ], [ -87.538155, 38.52979 ], [ -87.53817, 38.531265 ], [ -87.538177, 38.532012 ], [ -87.538198, 38.534255 ], [ -87.538206, 38.535003 ], [ -87.538211, 38.535561 ], [ -87.538222, 38.536626 ], [ -87.538243, 38.538547 ], [ -87.538275, 38.541498 ], [ -87.538293, 38.543122 ], [ -87.538298, 38.54363 ], [ -87.538306, 38.54434 ], [ -87.538314, 38.545155 ], [ -87.53832, 38.545664 ], [ -87.538328, 38.546362 ], [ -87.538345, 38.547516 ], [ -87.538399, 38.551161 ], [ -87.538435, 38.551912 ], [ -87.538513, 38.552679 ], [ -87.538548, 38.553067 ], [ -87.53858, 38.553412 ], [ -87.538598, 38.554223 ], [ -87.538598, 38.554918 ], [ -87.538596, 38.556112 ], [ -87.538592, 38.559697 ], [ -87.538592, 38.560892 ], [ -87.53859, 38.56308 ], [ -87.53859, 38.563512 ], [ -87.538595, 38.569646 ], [ -87.538597, 38.571835 ], [ -87.538597, 38.573302 ], [ -87.538599, 38.574951 ], [ -87.538637, 38.577703 ], [ -87.538658, 38.579171 ], [ -87.538668, 38.579907 ], [ -87.5387, 38.582115 ], [ -87.538711, 38.582852 ], [ -87.538719, 38.583433 ], [ -87.538745, 38.585177 ], [ -87.538754, 38.585759 ], [ -87.538767, 38.587721 ], [ -87.538795, 38.591918 ], [ -87.538834, 38.593609 ], [ -87.538857, 38.594556 ], [ -87.538903, 38.595571 ], [ -87.538977, 38.597237 ], [ -87.539082, 38.599572 ], [ -87.539082, 38.602239 ], [ -87.539082, 38.603908 ], [ -87.539082, 38.604124 ], [ -87.539082, 38.604774 ], [ -87.539082, 38.604991 ], [ -87.539082, 38.606051 ], [ -87.539082, 38.607857 ], [ -87.539058, 38.609232 ], [ -87.539052, 38.609614 ], [ -87.538956, 38.610286 ], [ -87.538925, 38.610506 ], [ -87.538863, 38.610746 ], [ -87.538675, 38.611481 ], [ -87.538485, 38.612004 ], [ -87.538447, 38.612092 ], [ -87.538261, 38.612524 ], [ -87.53814, 38.612801 ], [ -87.537779, 38.613635 ], [ -87.537659, 38.613913 ], [ -87.537172, 38.615036 ], [ -87.537038, 38.615347 ], [ -87.53572, 38.618409 ], [ -87.53524, 38.619525 ], [ -87.535236, 38.619534 ], [ -87.53521, 38.61959 ], [ -87.535134, 38.619759 ], [ -87.53511, 38.619816 ], [ -87.534678, 38.62078 ], [ -87.534641, 38.620871 ], [ -87.5339, 38.62272 ], [ -87.533445, 38.624121 ], [ -87.533419, 38.624204 ], [ -87.533153, 38.625239 ], [ -87.533037, 38.625687 ], [ -87.532875, 38.626509 ], [ -87.532709, 38.627355 ], [ -87.532185, 38.630349 ], [ -87.531962, 38.631631 ], [ -87.531908, 38.63194 ], [ -87.531746, 38.632867 ], [ -87.531692, 38.633176 ], [ -87.531412, 38.634775 ], [ -87.530575, 38.639571 ], [ -87.530296, 38.641171 ], [ -87.53002, 38.642744 ], [ -87.529696, 38.644599 ], [ -87.529446, 38.6455 ], [ -87.52904, 38.646474 ], [ -87.52859, 38.647276 ], [ -87.528576, 38.647302 ], [ -87.528042, 38.648107 ], [ -87.527852, 38.648352 ], [ -87.527771, 38.648443 ], [ -87.527657, 38.648569 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563988, 38.490831 ], [ -87.563982, 38.490919 ], [ -87.563977, 38.490983 ], [ -87.563976, 38.491007 ], [ -87.563955, 38.491332 ], [ -87.563936, 38.491439 ], [ -87.563919, 38.491538 ], [ -87.563911, 38.49159 ], [ -87.563851, 38.491976 ], [ -87.563673, 38.493133 ], [ -87.563614, 38.49352 ], [ -87.563601, 38.493605 ], [ -87.562851, 38.498481 ], [ -87.562532, 38.500221 ], [ -87.562399, 38.500947 ], [ -87.562089, 38.502856 ], [ -87.561374, 38.507587 ], [ -87.56121, 38.508427 ], [ -87.561052, 38.508989 ], [ -87.560762, 38.509774 ], [ -87.56025, 38.5108 ], [ -87.559826, 38.511461 ], [ -87.559455, 38.511954 ], [ -87.55888, 38.512631 ], [ -87.558507, 38.513007 ], [ -87.55816, 38.513344 ], [ -87.557761, 38.513683 ], [ -87.557184, 38.51413 ], [ -87.556747, 38.514422 ], [ -87.556471, 38.514606 ], [ -87.555593, 38.51511 ], [ -87.554294, 38.515731 ], [ -87.542762, 38.520997 ], [ -87.541919, 38.521445 ], [ -87.541436, 38.521751 ], [ -87.540478, 38.522486 ], [ -87.539669, 38.523259 ], [ -87.539341, 38.523656 ], [ -87.539202, 38.523867 ], [ -87.53898, 38.524205 ], [ -87.538814, 38.524457 ], [ -87.538453, 38.525134 ], [ -87.538181, 38.525858 ], [ -87.538008, 38.526483 ], [ -87.537896, 38.52728 ], [ -87.537872, 38.527702 ], [ -87.537874, 38.529344 ], [ -87.537897, 38.531267 ], [ -87.53794, 38.535006 ], [ -87.537947, 38.535572 ], [ -87.53797, 38.538547 ], [ -87.538004, 38.543126 ], [ -87.538024, 38.545665 ], [ -87.538029, 38.546377 ], [ -87.538083, 38.550241 ], [ -87.538298, 38.554928 ], [ -87.538301, 38.555089 ], [ -87.538325, 38.560899 ], [ -87.538323, 38.571833 ], [ -87.538322, 38.573984 ], [ -87.538399, 38.579172 ], [ -87.538407, 38.579708 ], [ -87.538439, 38.58285 ], [ -87.538468, 38.585767 ], [ -87.53853, 38.591927 ], [ -87.538571, 38.594579 ], [ -87.538619, 38.595576 ], [ -87.538769, 38.598732 ], [ -87.538796, 38.600022 ], [ -87.538798, 38.604991 ], [ -87.5388, 38.609094 ], [ -87.538735, 38.609927 ], [ -87.538546, 38.610926 ], [ -87.538218, 38.611955 ], [ -87.538002, 38.612458 ], [ -87.537628, 38.613328 ], [ -87.537465, 38.613696 ], [ -87.536812, 38.615173 ], [ -87.535801, 38.617583 ], [ -87.534957, 38.619449 ], [ -87.534833, 38.61974 ], [ -87.533858, 38.622042 ], [ -87.533349, 38.623512 ], [ -87.533084, 38.624396 ], [ -87.532866, 38.625236 ], [ -87.532807, 38.625463 ], [ -87.532553, 38.626658 ], [ -87.531674, 38.631706 ], [ -87.53141, 38.633225 ], [ -87.530915, 38.636066 ], [ -87.529443, 38.644486 ], [ -87.529201, 38.645385 ], [ -87.528886, 38.646131 ], [ -87.528413, 38.647049 ], [ -87.52779, 38.647989 ], [ -87.527745, 38.648048 ], [ -87.527665, 38.648135 ], [ -87.527559, 38.648284 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493314, 38.694923 ], [ -87.493265, 38.694947 ], [ -87.492823, 38.695159 ], [ -87.492303, 38.695409 ], [ -87.491137, 38.695968 ], [ -87.490204, 38.696416 ], [ -87.489938, 38.696543 ], [ -87.489139, 38.696927 ], [ -87.488874, 38.697055 ], [ -87.488414, 38.697275 ], [ -87.488053, 38.697449 ], [ -87.487548, 38.697701 ], [ -87.487086, 38.697976 ], [ -87.487065, 38.697989 ], [ -87.486671, 38.698255 ], [ -87.486644, 38.698275 ], [ -87.48606, 38.698715 ], [ -87.485949, 38.6988 ], [ -87.485527, 38.699184 ], [ -87.485126, 38.699597 ], [ -87.484827, 38.699954 ], [ -87.484578, 38.700319 ], [ -87.484282, 38.700756 ], [ -87.484184, 38.700935 ], [ -87.484097, 38.701092 ], [ -87.48403, 38.701215 ], [ -87.483878, 38.701584 ], [ -87.48381, 38.701751 ], [ -87.483733, 38.70194 ], [ -87.483717, 38.701997 ], [ -87.483514, 38.702731 ], [ -87.48351, 38.70276 ], [ -87.483481, 38.703022 ], [ -87.483436, 38.703407 ], [ -87.483415, 38.70359 ], [ -87.48342, 38.70457 ], [ -87.483435, 38.704957 ], [ -87.483468, 38.705802 ], [ -87.483567, 38.708337 ], [ -87.483601, 38.709182 ], [ -87.483606, 38.70933 ], [ -87.483624, 38.709774 ], [ -87.48363, 38.709923 ], [ -87.483653, 38.710531 ], [ -87.483722, 38.712355 ], [ -87.483744, 38.712918 ], [ -87.483747, 38.712963 ], [ -87.483748, 38.713008 ], [ -87.483776, 38.713733 ], [ -87.483866, 38.716045 ], [ -87.483896, 38.716816 ], [ -87.483901, 38.716947 ], [ -87.483916, 38.717343 ], [ -87.483921, 38.717475 ], [ -87.484018, 38.719989 ], [ -87.484057, 38.720981 ], [ -87.484064, 38.722291 ], [ -87.484038, 38.722676 ], [ -87.483989, 38.723176 ], [ -87.48394, 38.723685 ], [ -87.483433, 38.727158 ], [ -87.483383, 38.727493 ], [ -87.48302, 38.729984 ], [ -87.482968, 38.730349 ], [ -87.482811, 38.731445 ], [ -87.48276, 38.731811 ], [ -87.482724, 38.732048 ], [ -87.482616, 38.732759 ], [ -87.482581, 38.732997 ], [ -87.482577, 38.733019 ], [ -87.482568, 38.733085 ], [ -87.482566, 38.733108 ], [ -87.482556, 38.733181 ], [ -87.482525, 38.733403 ], [ -87.482516, 38.733477 ], [ -87.482507, 38.733542 ], [ -87.48243, 38.734012 ], [ -87.482387, 38.734282 ], [ -87.482217, 38.735101 ], [ -87.482086, 38.735602 ], [ -87.481949, 38.736128 ], [ -87.481946, 38.736138 ], [ -87.481857, 38.736412 ], [ -87.481704, 38.736892 ], [ -87.481568, 38.73726 ], [ -87.481466, 38.737541 ], [ -87.481458, 38.73756 ], [ -87.481435, 38.737618 ], [ -87.481428, 38.737638 ], [ -87.481316, 38.737925 ], [ -87.481223, 38.738167 ], [ -87.480976, 38.738787 ], [ -87.480863, 38.739075 ], [ -87.480847, 38.739115 ], [ -87.480821, 38.739175 ], [ -87.480696, 38.739474 ], [ -87.480681, 38.739512 ], [ -87.480657, 38.739575 ], [ -87.480507, 38.739958 ], [ -87.480096, 38.740965 ], [ -87.479425, 38.742642 ], [ -87.478786, 38.744242 ], [ -87.478365, 38.74531 ], [ -87.478009, 38.746181 ], [ -87.475812, 38.751678 ], [ -87.475743, 38.75185 ], [ -87.475162, 38.753318 ], [ -87.474818, 38.754165 ], [ -87.474516, 38.75492 ], [ -87.474172, 38.755781 ], [ -87.474132, 38.755876 ], [ -87.474035, 38.756114 ], [ -87.473944, 38.756354 ], [ -87.473778, 38.756743 ], [ -87.47333, 38.757886 ], [ -87.472978, 38.758745 ], [ -87.472959, 38.758793 ], [ -87.47272, 38.759393 ], [ -87.472596, 38.759703 ], [ -87.471864, 38.761535 ], [ -87.471792, 38.761716 ], [ -87.469651, 38.767025 ], [ -87.469244, 38.768036 ], [ -87.469038, 38.768579 ], [ -87.468921, 38.768859 ], [ -87.468866, 38.768974 ], [ -87.468619, 38.769625 ], [ -87.468579, 38.769733 ], [ -87.468077, 38.771108 ], [ -87.46762, 38.772385 ], [ -87.467563, 38.772547 ], [ -87.467296, 38.773267 ], [ -87.467215, 38.773485 ], [ -87.466869, 38.774439 ], [ -87.466796, 38.774642 ], [ -87.466559, 38.775312 ], [ -87.466109, 38.776532 ], [ -87.465645, 38.777924 ], [ -87.465403, 38.778803 ], [ -87.465328, 38.779077 ], [ -87.465125, 38.779898 ], [ -87.465055, 38.780224 ], [ -87.464968, 38.780624 ], [ -87.46482, 38.781498 ], [ -87.464756, 38.781916 ], [ -87.464258, 38.785225 ], [ -87.464077, 38.786348 ], [ -87.463973, 38.787011 ], [ -87.463885, 38.787581 ], [ -87.463767, 38.788393 ], [ -87.46371, 38.78871 ], [ -87.463673, 38.788915 ], [ -87.463603, 38.789306 ], [ -87.46355, 38.789529 ], [ -87.463503, 38.789733 ], [ -87.463489, 38.789792 ], [ -87.463369, 38.790163 ], [ -87.46324, 38.790605 ], [ -87.46306, 38.7911 ], [ -87.462875, 38.791551 ], [ -87.462673, 38.792005 ], [ -87.462474, 38.792429 ], [ -87.46228, 38.792803 ], [ -87.462265, 38.792833 ], [ -87.46206, 38.793204 ], [ -87.461569, 38.793987 ], [ -87.461218, 38.794502 ], [ -87.460251, 38.795792 ], [ -87.459597, 38.796677 ], [ -87.459129, 38.797299 ], [ -87.458471, 38.798196 ], [ -87.458246, 38.798511 ], [ -87.457374, 38.799655 ], [ -87.456475, 38.800859 ], [ -87.455868, 38.801674 ], [ -87.454485, 38.803507 ], [ -87.454261, 38.803801 ], [ -87.453787, 38.804438 ], [ -87.453705, 38.80455 ], [ -87.453017, 38.80546 ], [ -87.452507, 38.806152 ], [ -87.451693, 38.807231 ], [ -87.451185, 38.807906 ], [ -87.450995, 38.808162 ], [ -87.45015, 38.809304 ], [ -87.449384, 38.81032 ], [ -87.44898, 38.810847 ], [ -87.448804, 38.811079 ], [ -87.448426, 38.811601 ], [ -87.447994, 38.812225 ], [ -87.447602, 38.812835 ], [ -87.447409, 38.813169 ], [ -87.447164, 38.813609 ], [ -87.446918, 38.814063 ], [ -87.446673, 38.814548 ], [ -87.446521, 38.814861 ], [ -87.446432, 38.815071 ], [ -87.446269, 38.815423 ], [ -87.445989, 38.816147 ], [ -87.445693, 38.817046 ], [ -87.445515, 38.817681 ], [ -87.445352, 38.818332 ], [ -87.445205, 38.818886 ], [ -87.444934, 38.819964 ], [ -87.444567, 38.821433 ], [ -87.444296, 38.822491 ], [ -87.444174, 38.822992 ], [ -87.444113, 38.823219 ], [ -87.443991, 38.82368 ], [ -87.443658, 38.824999 ], [ -87.443139, 38.827065 ], [ -87.442906, 38.827969 ], [ -87.442623, 38.829121 ], [ -87.44231, 38.830345 ], [ -87.442005, 38.831542 ], [ -87.441894, 38.831943 ], [ -87.441848, 38.832124 ], [ -87.441765, 38.832447 ], [ -87.441627, 38.833012 ], [ -87.441349, 38.834098 ], [ -87.441153, 38.83487 ], [ -87.440691, 38.836726 ], [ -87.44019, 38.838688 ], [ -87.439926, 38.839743 ], [ -87.439855, 38.84002 ], [ -87.439353, 38.841993 ], [ -87.438614, 38.844924 ], [ -87.438078, 38.847053 ], [ -87.436966, 38.85142 ], [ -87.436771, 38.852169 ], [ -87.436676, 38.852582 ], [ -87.436386, 38.853713 ], [ -87.436226, 38.85434 ], [ -87.436079, 38.854935 ], [ -87.435859, 38.85579 ], [ -87.435648, 38.856645 ], [ -87.435301, 38.858026 ], [ -87.43511, 38.85875 ], [ -87.435048, 38.85899 ], [ -87.434291, 38.861968 ], [ -87.433823, 38.863857 ], [ -87.433508, 38.865069 ], [ -87.43337, 38.865605 ], [ -87.433138, 38.866653 ], [ -87.43305, 38.867147 ], [ -87.433038, 38.86719 ], [ -87.433037, 38.867236 ], [ -87.432967, 38.867852 ], [ -87.432951, 38.868242 ], [ -87.432944, 38.868435 ], [ -87.432961, 38.868971 ], [ -87.433012, 38.869466 ], [ -87.433125, 38.870143 ], [ -87.433251, 38.870644 ], [ -87.433425, 38.871199 ], [ -87.433482, 38.871346 ], [ -87.433644, 38.871763 ], [ -87.433906, 38.872314 ], [ -87.433986, 38.872465 ], [ -87.434154, 38.872781 ], [ -87.434237, 38.872916 ], [ -87.434328, 38.873063 ], [ -87.43453, 38.873371 ], [ -87.434561, 38.873419 ], [ -87.434794, 38.873747 ], [ -87.435087, 38.874126 ], [ -87.435252, 38.874327 ], [ -87.435344, 38.874428 ], [ -87.435633, 38.874742 ], [ -87.43596, 38.875077 ], [ -87.436028, 38.875146 ], [ -87.436952, 38.876073 ], [ -87.437283, 38.876405 ], [ -87.437346, 38.876469 ], [ -87.437477, 38.8766 ], [ -87.437538, 38.876662 ], [ -87.437602, 38.876727 ], [ -87.438442, 38.877584 ], [ -87.438463, 38.877606 ], [ -87.438932, 38.878103 ], [ -87.43928, 38.878505 ], [ -87.439556, 38.878841 ], [ -87.439837, 38.879204 ], [ -87.440264, 38.879815 ], [ -87.440546, 38.880243 ], [ -87.440713, 38.880525 ], [ -87.440839, 38.880739 ], [ -87.441117, 38.881246 ], [ -87.441294, 38.881611 ], [ -87.441343, 38.881713 ], [ -87.441357, 38.881741 ], [ -87.441477, 38.882025 ], [ -87.441522, 38.88213 ], [ -87.441648, 38.8824 ], [ -87.441793, 38.882775 ], [ -87.44192, 38.883148 ], [ -87.442033, 38.883514 ], [ -87.442172, 38.884024 ], [ -87.442202, 38.884131 ], [ -87.442341, 38.884761 ], [ -87.442439, 38.885364 ], [ -87.442495, 38.885775 ], [ -87.442528, 38.886213 ], [ -87.442559, 38.886733 ], [ -87.442555, 38.887282 ], [ -87.442534, 38.887849 ], [ -87.44246, 38.888651 ], [ -87.44239, 38.889095 ], [ -87.442289, 38.889621 ], [ -87.442204, 38.889982 ], [ -87.44216, 38.890171 ], [ -87.442024, 38.890671 ], [ -87.441864, 38.891166 ], [ -87.441585, 38.891889 ], [ -87.441116, 38.893082 ], [ -87.441033, 38.893284 ], [ -87.440815, 38.893818 ], [ -87.43937, 38.897467 ], [ -87.439152, 38.898019 ], [ -87.438838, 38.898807 ], [ -87.438816, 38.898862 ], [ -87.43855, 38.899534 ], [ -87.437756, 38.901552 ], [ -87.437504, 38.902194 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.49368, 38.694877 ], [ -87.493619, 38.694907 ], [ -87.493356, 38.695033 ], [ -87.492434, 38.695476 ], [ -87.492091, 38.695641 ], [ -87.491028, 38.696153 ], [ -87.489038, 38.697112 ], [ -87.488183, 38.697524 ], [ -87.487229, 38.698032 ], [ -87.486822, 38.698294 ], [ -87.486012, 38.698919 ], [ -87.48559, 38.699314 ], [ -87.485047, 38.69993 ], [ -87.484602, 38.700552 ], [ -87.484424, 38.700852 ], [ -87.484082, 38.701568 ], [ -87.484031, 38.701711 ], [ -87.483959, 38.701914 ], [ -87.483808, 38.702442 ], [ -87.48374, 38.702796 ], [ -87.483722, 38.703001 ], [ -87.483653, 38.703788 ], [ -87.483694, 38.704837 ], [ -87.483775, 38.706941 ], [ -87.483999, 38.712722 ], [ -87.484157, 38.716822 ], [ -87.484326, 38.721178 ], [ -87.484296, 38.722676 ], [ -87.484253, 38.723262 ], [ -87.484156, 38.724042 ], [ -87.484036, 38.72489 ], [ -87.483495, 38.728566 ], [ -87.483301, 38.729912 ], [ -87.483294, 38.729957 ], [ -87.483137, 38.731015 ], [ -87.483025, 38.731853 ], [ -87.483022, 38.731873 ], [ -87.482828, 38.733127 ], [ -87.482822, 38.733173 ], [ -87.482791, 38.733398 ], [ -87.48278, 38.733479 ], [ -87.482712, 38.733972 ], [ -87.48261, 38.734581 ], [ -87.482518, 38.735035 ], [ -87.482399, 38.735554 ], [ -87.482217, 38.736259 ], [ -87.482013, 38.736895 ], [ -87.481766, 38.737621 ], [ -87.480901, 38.739755 ], [ -87.480609, 38.740477 ], [ -87.480041, 38.74191 ], [ -87.479729, 38.74268 ], [ -87.479187, 38.744055 ], [ -87.478492, 38.745774 ], [ -87.478267, 38.746345 ], [ -87.477666, 38.747829 ], [ -87.477217, 38.748973 ], [ -87.476687, 38.750287 ], [ -87.476391, 38.751038 ], [ -87.475859, 38.752349 ], [ -87.475324, 38.753687 ], [ -87.474806, 38.754997 ], [ -87.474482, 38.755814 ], [ -87.474376, 38.756064 ], [ -87.473163, 38.759082 ], [ -87.473008, 38.759481 ], [ -87.472902, 38.759754 ], [ -87.472864, 38.759851 ], [ -87.471896, 38.762235 ], [ -87.46963, 38.767872 ], [ -87.469207, 38.768911 ], [ -87.469163, 38.769028 ], [ -87.468812, 38.769967 ], [ -87.468208, 38.771626 ], [ -87.467569, 38.773389 ], [ -87.466888, 38.775267 ], [ -87.466576, 38.776142 ], [ -87.466303, 38.776873 ], [ -87.466049, 38.777653 ], [ -87.465862, 38.778254 ], [ -87.465593, 38.779235 ], [ -87.465363, 38.780229 ], [ -87.465333, 38.780374 ], [ -87.465271, 38.78067 ], [ -87.465022, 38.78219 ], [ -87.464655, 38.784542 ], [ -87.464057, 38.788495 ], [ -87.464021, 38.788706 ], [ -87.463977, 38.788963 ], [ -87.463821, 38.789678 ], [ -87.463692, 38.790198 ], [ -87.46355, 38.7907 ], [ -87.463406, 38.79109 ], [ -87.463191, 38.791632 ], [ -87.462943, 38.792217 ], [ -87.462624, 38.792834 ], [ -87.462362, 38.793321 ], [ -87.461891, 38.794072 ], [ -87.461316, 38.794898 ], [ -87.460649, 38.795766 ], [ -87.459608, 38.797167 ], [ -87.459045, 38.797914 ], [ -87.458287, 38.798939 ], [ -87.45772, 38.799688 ], [ -87.456593, 38.80122 ], [ -87.455937, 38.802093 ], [ -87.45478, 38.803624 ], [ -87.451509, 38.807994 ], [ -87.451085, 38.808548 ], [ -87.450761, 38.808972 ], [ -87.448992, 38.811348 ], [ -87.448448, 38.812094 ], [ -87.447992, 38.812799 ], [ -87.447357, 38.813848 ], [ -87.446969, 38.814613 ], [ -87.44682, 38.814938 ], [ -87.44665, 38.815337 ], [ -87.446511, 38.815685 ], [ -87.446275, 38.816324 ], [ -87.446089, 38.816887 ], [ -87.445871, 38.817638 ], [ -87.445644, 38.818508 ], [ -87.444769, 38.821946 ], [ -87.444488, 38.823033 ], [ -87.444409, 38.823371 ], [ -87.444348, 38.82363 ], [ -87.444216, 38.824039 ], [ -87.443747, 38.826027 ], [ -87.443572, 38.826686 ], [ -87.443214, 38.828114 ], [ -87.443009, 38.828903 ], [ -87.442832, 38.829634 ], [ -87.442347, 38.831557 ], [ -87.442256, 38.831875 ], [ -87.442197, 38.832121 ], [ -87.442124, 38.832422 ], [ -87.441415, 38.835189 ], [ -87.44104, 38.836714 ], [ -87.440192, 38.840023 ], [ -87.439957, 38.840973 ], [ -87.439701, 38.841979 ], [ -87.43961, 38.842336 ], [ -87.439317, 38.84351 ], [ -87.439084, 38.84441 ], [ -87.4386, 38.846336 ], [ -87.437282, 38.851519 ], [ -87.436973, 38.852712 ], [ -87.436797, 38.853452 ], [ -87.436485, 38.854654 ], [ -87.436176, 38.85591 ], [ -87.436041, 38.856412 ], [ -87.435962, 38.856723 ], [ -87.435766, 38.857494 ], [ -87.435541, 38.858421 ], [ -87.435057, 38.860307 ], [ -87.43458, 38.862213 ], [ -87.434206, 38.863657 ], [ -87.433744, 38.865493 ], [ -87.433616, 38.865924 ], [ -87.433418, 38.866762 ], [ -87.433354, 38.867117 ], [ -87.43333, 38.867318 ], [ -87.433275, 38.867687 ], [ -87.433247, 38.868087 ], [ -87.433245, 38.868536 ], [ -87.43326, 38.868957 ], [ -87.4333, 38.869358 ], [ -87.433362, 38.869779 ], [ -87.433437, 38.870158 ], [ -87.433573, 38.870681 ], [ -87.433715, 38.871134 ], [ -87.433883, 38.871574 ], [ -87.434075, 38.872013 ], [ -87.434247, 38.872337 ], [ -87.43444, 38.872703 ], [ -87.434667, 38.873071 ], [ -87.434861, 38.873361 ], [ -87.435005, 38.873576 ], [ -87.435328, 38.873983 ], [ -87.435761, 38.874474 ], [ -87.436447, 38.875189 ], [ -87.436775, 38.875514 ], [ -87.437169, 38.875916 ], [ -87.437407, 38.876154 ], [ -87.437732, 38.876479 ], [ -87.438773, 38.877542 ], [ -87.439122, 38.877907 ], [ -87.439402, 38.878221 ], [ -87.439669, 38.878543 ], [ -87.439991, 38.878947 ], [ -87.440263, 38.879316 ], [ -87.440523, 38.879691 ], [ -87.440782, 38.880089 ], [ -87.441052, 38.880531 ], [ -87.441299, 38.880971 ], [ -87.441732, 38.881872 ], [ -87.441753, 38.881913 ], [ -87.44177, 38.881957 ], [ -87.441931, 38.882331 ], [ -87.442097, 38.882755 ], [ -87.442229, 38.883141 ], [ -87.442411, 38.883743 ], [ -87.442567, 38.884368 ], [ -87.44268, 38.884956 ], [ -87.442779, 38.885617 ], [ -87.44284, 38.886273 ], [ -87.442865, 38.886907 ], [ -87.442855, 38.887509 ], [ -87.442823, 38.888071 ], [ -87.442785, 38.888488 ], [ -87.442657, 38.889313 ], [ -87.442567, 38.889777 ], [ -87.442463, 38.890189 ], [ -87.44232, 38.890705 ], [ -87.442123, 38.891306 ], [ -87.441899, 38.891895 ], [ -87.440923, 38.894364 ], [ -87.439453, 38.898054 ], [ -87.439163, 38.898802 ], [ -87.439126, 38.898893 ], [ -87.437812, 38.902199 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563988, 38.490831 ], [ -87.563982, 38.490919 ], [ -87.563977, 38.490983 ], [ -87.563976, 38.491007 ], [ -87.563955, 38.491332 ], [ -87.563936, 38.491439 ], [ -87.563919, 38.491538 ], [ -87.563911, 38.49159 ], [ -87.563851, 38.491976 ], [ -87.563673, 38.493133 ], [ -87.563614, 38.49352 ], [ -87.563601, 38.493605 ], [ -87.562851, 38.498481 ], [ -87.562532, 38.500221 ], [ -87.562399, 38.500947 ], [ -87.562089, 38.502856 ], [ -87.561374, 38.507587 ], [ -87.56121, 38.508427 ], [ -87.561052, 38.508989 ], [ -87.560762, 38.509774 ], [ -87.56025, 38.5108 ], [ -87.559826, 38.511461 ], [ -87.559455, 38.511954 ], [ -87.55888, 38.512631 ], [ -87.558507, 38.513007 ], [ -87.55816, 38.513344 ], [ -87.557761, 38.513683 ], [ -87.557184, 38.51413 ], [ -87.556747, 38.514422 ], [ -87.556471, 38.514606 ], [ -87.555593, 38.51511 ], [ -87.554294, 38.515731 ], [ -87.542762, 38.520997 ], [ -87.541919, 38.521445 ], [ -87.541436, 38.521751 ], [ -87.540478, 38.522486 ], [ -87.539669, 38.523259 ], [ -87.539341, 38.523656 ], [ -87.539202, 38.523867 ], [ -87.53898, 38.524205 ], [ -87.538814, 38.524457 ], [ -87.538453, 38.525134 ], [ -87.538181, 38.525858 ], [ -87.538008, 38.526483 ], [ -87.537896, 38.52728 ], [ -87.537872, 38.527702 ], [ -87.537874, 38.529344 ], [ -87.537897, 38.531267 ], [ -87.53794, 38.535006 ], [ -87.537947, 38.535572 ], [ -87.53797, 38.538547 ], [ -87.538004, 38.543126 ], [ -87.538024, 38.545665 ], [ -87.538029, 38.546377 ], [ -87.538083, 38.550241 ], [ -87.538298, 38.554928 ], [ -87.538301, 38.555089 ], [ -87.538325, 38.560899 ], [ -87.538323, 38.571833 ], [ -87.538322, 38.573984 ], [ -87.538399, 38.579172 ], [ -87.538407, 38.579708 ], [ -87.538439, 38.58285 ], [ -87.538468, 38.585767 ], [ -87.53853, 38.591927 ], [ -87.538571, 38.594579 ], [ -87.538619, 38.595576 ], [ -87.538769, 38.598732 ], [ -87.538796, 38.600022 ], [ -87.538798, 38.604991 ], [ -87.5388, 38.609094 ], [ -87.538735, 38.609927 ], [ -87.538546, 38.610926 ], [ -87.538218, 38.611955 ], [ -87.538002, 38.612458 ], [ -87.537628, 38.613328 ], [ -87.537465, 38.613696 ], [ -87.536812, 38.615173 ], [ -87.535801, 38.617583 ], [ -87.534957, 38.619449 ], [ -87.534833, 38.61974 ], [ -87.533858, 38.622042 ], [ -87.533349, 38.623512 ], [ -87.533084, 38.624396 ], [ -87.532866, 38.625236 ], [ -87.532807, 38.625463 ], [ -87.532553, 38.626658 ], [ -87.531674, 38.631706 ], [ -87.53141, 38.633225 ], [ -87.530915, 38.636066 ], [ -87.529443, 38.644486 ], [ -87.529201, 38.645385 ], [ -87.528886, 38.646131 ], [ -87.528413, 38.647049 ], [ -87.52779, 38.647989 ], [ -87.527745, 38.648048 ], [ -87.527665, 38.648135 ], [ -87.527559, 38.648284 ], [ -87.527218, 38.648718 ], [ -87.527079, 38.648862 ], [ -87.526731, 38.649225 ], [ -87.526, 38.649884 ], [ -87.524437, 38.651053 ], [ -87.523133, 38.652016 ], [ -87.522917, 38.652176 ], [ -87.522499, 38.652485 ], [ -87.519595, 38.65462 ], [ -87.516781, 38.656689 ], [ -87.515806, 38.65737 ], [ -87.515018, 38.657921 ], [ -87.513177, 38.659141 ], [ -87.512458, 38.659639 ], [ -87.512395, 38.659683 ], [ -87.51136, 38.660407 ], [ -87.509378, 38.661678 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474806, 38.754997 ], [ -87.475324, 38.753687 ], [ -87.475859, 38.752349 ], [ -87.476391, 38.751038 ], [ -87.476687, 38.750287 ], [ -87.477217, 38.748973 ], [ -87.477666, 38.747829 ], [ -87.478267, 38.746345 ], [ -87.478492, 38.745774 ], [ -87.479187, 38.744055 ], [ -87.479729, 38.74268 ], [ -87.480041, 38.74191 ], [ -87.480609, 38.740477 ], [ -87.480901, 38.739755 ], [ -87.481766, 38.737621 ], [ -87.482013, 38.736895 ], [ -87.482217, 38.736259 ], [ -87.482399, 38.735554 ], [ -87.482518, 38.735035 ], [ -87.48261, 38.734581 ], [ -87.482712, 38.733972 ], [ -87.48278, 38.733479 ], [ -87.482791, 38.733398 ], [ -87.482822, 38.733173 ], [ -87.482828, 38.733127 ], [ -87.483022, 38.731873 ], [ -87.483025, 38.731853 ], [ -87.483137, 38.731015 ], [ -87.483294, 38.729957 ], [ -87.483301, 38.729912 ], [ -87.483495, 38.728566 ], [ -87.484036, 38.72489 ], [ -87.484156, 38.724042 ], [ -87.484253, 38.723262 ], [ -87.484296, 38.722676 ], [ -87.484326, 38.721178 ], [ -87.484157, 38.716822 ], [ -87.483999, 38.712722 ], [ -87.483775, 38.706941 ], [ -87.483694, 38.704837 ], [ -87.483653, 38.703788 ], [ -87.483722, 38.703001 ], [ -87.48374, 38.702796 ], [ -87.483808, 38.702442 ], [ -87.483959, 38.701914 ], [ -87.484031, 38.701711 ], [ -87.484082, 38.701568 ], [ -87.484424, 38.700852 ], [ -87.484602, 38.700552 ], [ -87.485047, 38.69993 ], [ -87.48559, 38.699314 ], [ -87.486012, 38.698919 ], [ -87.486822, 38.698294 ], [ -87.487229, 38.698032 ], [ -87.488183, 38.697524 ], [ -87.489038, 38.697112 ], [ -87.491028, 38.696153 ], [ -87.492091, 38.695641 ], [ -87.492434, 38.695476 ], [ -87.493356, 38.695033 ], [ -87.493619, 38.694907 ], [ -87.49368, 38.694877 ], [ -87.493637, 38.694768 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490512, 38.687651 ], [ -87.490699, 38.688127 ], [ -87.490838, 38.688491 ], [ -87.490884, 38.688612 ], [ -87.491077, 38.689113 ], [ -87.491096, 38.689164 ], [ -87.49114, 38.689277 ], [ -87.491903, 38.691259 ], [ -87.491965, 38.691422 ], [ -87.492154, 38.691912 ], [ -87.492217, 38.692076 ], [ -87.492523, 38.692869 ], [ -87.493036, 38.694202 ], [ -87.493297, 38.69488 ], [ -87.493314, 38.694923 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841663", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493637, 38.694768 ], [ -87.49368, 38.694877 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487757, 38.678537 ], [ -87.487412, 38.678283 ], [ -87.486466, 38.677724 ], [ -87.486408, 38.677698 ], [ -87.485906, 38.67747 ], [ -87.485163, 38.677196 ], [ -87.484366, 38.67698 ], [ -87.481827, 38.676417 ], [ -87.480275, 38.676074 ], [ -87.47846, 38.675672 ], [ -87.477432, 38.675445 ], [ -87.475316, 38.675016 ], [ -87.474559, 38.674913 ], [ -87.473898, 38.674845 ], [ -87.472966, 38.674781 ], [ -87.471113, 38.674656 ], [ -87.470941, 38.674644 ], [ -87.463278, 38.674153 ], [ -87.463007, 38.674135 ], [ -87.460882, 38.674 ], [ -87.458749, 38.673902 ], [ -87.45692, 38.673883 ], [ -87.45595, 38.673908 ], [ -87.453687, 38.674019 ], [ -87.452496, 38.674088 ], [ -87.435916, 38.675052 ], [ -87.430014, 38.675395 ], [ -87.429957, 38.675396 ], [ -87.4299, 38.675401 ], [ -87.429825, 38.675406 ], [ -87.428001, 38.675557 ], [ -87.426917, 38.675704 ], [ -87.425189, 38.676034 ], [ -87.423535, 38.676483 ], [ -87.42007, 38.677504 ], [ -87.41324, 38.679517 ], [ -87.412783, 38.679624 ], [ -87.412588, 38.679669 ], [ -87.411903, 38.679796 ], [ -87.411314, 38.679865 ], [ -87.410627, 38.679911 ], [ -87.408938, 38.679893 ], [ -87.40677, 38.679648 ], [ -87.402888, 38.67914 ], [ -87.399754, 38.678648 ], [ -87.395868, 38.678147 ], [ -87.393277, 38.677872 ], [ -87.389316, 38.677468 ], [ -87.388303, 38.677324 ], [ -87.385956, 38.677051 ], [ -87.381135, 38.676567 ], [ -87.378761, 38.676312 ], [ -87.374723, 38.675858 ], [ -87.373929, 38.675747 ], [ -87.371652, 38.67543 ], [ -87.369264, 38.675058 ], [ -87.368452, 38.674895 ], [ -87.367344, 38.674673 ], [ -87.361682, 38.673536 ], [ -87.356786, 38.672644 ], [ -87.3555, 38.672362 ], [ -87.351278, 38.671481 ], [ -87.349751, 38.671187 ], [ -87.339403, 38.669109 ], [ -87.335218, 38.668251 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335218, 38.668251 ], [ -87.33426, 38.668057 ], [ -87.3334, 38.667877 ], [ -87.332898, 38.667773 ], [ -87.331725, 38.667567 ], [ -87.329113, 38.666923 ], [ -87.328527, 38.666724 ], [ -87.327747, 38.666439 ], [ -87.327283, 38.666279 ], [ -87.32678, 38.666093 ], [ -87.326294, 38.665906 ], [ -87.325641, 38.665626 ], [ -87.324279, 38.665042 ], [ -87.322648, 38.664236 ], [ -87.318258, 38.662122 ], [ -87.317899, 38.661955 ], [ -87.317322, 38.661687 ], [ -87.316209, 38.661251 ], [ -87.310667, 38.658591 ], [ -87.309814, 38.658194 ], [ -87.304662, 38.655679 ], [ -87.301676, 38.654296 ], [ -87.297607, 38.652353 ], [ -87.295148, 38.651201 ], [ -87.294866, 38.651089 ], [ -87.29414, 38.650801 ], [ -87.293121, 38.650419 ], [ -87.292092, 38.650055 ], [ -87.29053, 38.64944 ], [ -87.289312, 38.64909 ], [ -87.288778, 38.648907 ], [ -87.286669, 38.648328 ], [ -87.285823, 38.648092 ], [ -87.282677, 38.647467 ], [ -87.282197, 38.647338 ], [ -87.280773, 38.647102 ], [ -87.276089, 38.646363 ], [ -87.274834, 38.646208 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274892, 38.646433 ], [ -87.276102, 38.646629 ], [ -87.277635, 38.646882 ], [ -87.277708, 38.646897 ], [ -87.279585, 38.647185 ], [ -87.283584, 38.647863 ], [ -87.284109, 38.647978 ], [ -87.285808, 38.648366 ], [ -87.287834, 38.648907 ], [ -87.288923, 38.649196 ], [ -87.289464, 38.649364 ], [ -87.290476, 38.649691 ], [ -87.290943, 38.649896 ], [ -87.291634, 38.650123 ], [ -87.292661, 38.650479 ], [ -87.29334, 38.650726 ], [ -87.293477, 38.650778 ], [ -87.293501, 38.650787 ], [ -87.294837, 38.651395 ], [ -87.296218, 38.652 ], [ -87.297514, 38.652609 ], [ -87.301423, 38.654461 ], [ -87.304624, 38.655962 ], [ -87.309665, 38.658391 ], [ -87.310435, 38.658752 ], [ -87.311783, 38.659385 ], [ -87.315972, 38.6614 ], [ -87.316888, 38.661815 ], [ -87.319754, 38.663148 ], [ -87.322241, 38.66434 ], [ -87.322712, 38.664594 ], [ -87.324075, 38.6652 ], [ -87.32538, 38.665796 ], [ -87.326572, 38.666269 ], [ -87.328227, 38.666855 ], [ -87.329276, 38.667196 ], [ -87.330411, 38.667489 ], [ -87.331914, 38.667839 ], [ -87.332888, 38.668028 ], [ -87.33502, 38.668478 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274834, 38.646208 ], [ -87.271649, 38.645728 ], [ -87.269891, 38.645616 ], [ -87.267998, 38.645501 ], [ -87.26543, 38.645452 ], [ -87.263235, 38.645577 ], [ -87.251603, 38.646362 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251756, 38.646594 ], [ -87.264972, 38.645702 ], [ -87.265562, 38.645689 ], [ -87.266057, 38.645677 ], [ -87.266338, 38.645671 ], [ -87.266637, 38.645677 ], [ -87.267099, 38.645685 ], [ -87.267543, 38.64571 ], [ -87.268038, 38.645739 ], [ -87.269408, 38.645816 ], [ -87.269556, 38.645825 ], [ -87.269878, 38.64582 ], [ -87.271724, 38.645938 ], [ -87.274892, 38.646433 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493637, 38.694768 ], [ -87.493618, 38.694722 ], [ -87.493384, 38.694147 ], [ -87.492763, 38.692669 ], [ -87.492343, 38.691572 ], [ -87.49219, 38.691186 ], [ -87.491432, 38.689271 ], [ -87.491408, 38.68921 ], [ -87.491385, 38.689151 ], [ -87.491257, 38.688802 ], [ -87.491194, 38.688616 ], [ -87.491151, 38.688487 ], [ -87.490809, 38.687608 ], [ -87.49068, 38.687259 ], [ -87.490562, 38.686839 ], [ -87.490463, 38.686485 ], [ -87.490279, 38.68541 ], [ -87.490238, 38.684858 ], [ -87.490232, 38.684447 ], [ -87.490222, 38.68364 ], [ -87.490128, 38.682465 ], [ -87.490121, 38.682365 ], [ -87.490018, 38.681839 ], [ -87.489868, 38.681355 ], [ -87.489709, 38.680951 ], [ -87.489303, 38.680211 ], [ -87.489055, 38.679851 ], [ -87.488617, 38.679337 ], [ -87.488491, 38.679188 ], [ -87.488092, 38.678807 ], [ -87.487757, 38.678537 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492478, 38.674611 ], [ -87.491958, 38.675279 ], [ -87.491722, 38.675625 ], [ -87.491286, 38.676266 ], [ -87.49097, 38.676671 ], [ -87.490676, 38.676989 ], [ -87.490314, 38.677311 ], [ -87.489912, 38.677609 ], [ -87.489474, 38.677872 ], [ -87.489098, 38.678064 ], [ -87.488952, 38.678123 ], [ -87.488611, 38.678263 ], [ -87.487757, 38.678537 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.33502, 38.668478 ], [ -87.335885, 38.668653 ], [ -87.337419, 38.668971 ], [ -87.338629, 38.66919 ], [ -87.33935, 38.669333 ], [ -87.341391, 38.66975 ], [ -87.345758, 38.670609 ], [ -87.347253, 38.670927 ], [ -87.348744, 38.671206 ], [ -87.349938, 38.671448 ], [ -87.350852, 38.671635 ], [ -87.351278, 38.671713 ], [ -87.352193, 38.671899 ], [ -87.355452, 38.672596 ], [ -87.3567, 38.672842 ], [ -87.361561, 38.673781 ], [ -87.363219, 38.67409 ], [ -87.366457, 38.674745 ], [ -87.367209, 38.67488 ], [ -87.368309, 38.675077 ], [ -87.369017, 38.675219 ], [ -87.369643, 38.675344 ], [ -87.371126, 38.675642 ], [ -87.372048, 38.675772 ], [ -87.374224, 38.676099 ], [ -87.378563, 38.676539 ], [ -87.380974, 38.676804 ], [ -87.385832, 38.677308 ], [ -87.388114, 38.677532 ], [ -87.393333, 38.678137 ], [ -87.395811, 38.678392 ], [ -87.399783, 38.678913 ], [ -87.402835, 38.679409 ], [ -87.404842, 38.679635 ], [ -87.406106, 38.679778 ], [ -87.406838, 38.679861 ], [ -87.4089, 38.680094 ], [ -87.409158, 38.680119 ], [ -87.410016, 38.680151 ], [ -87.410786, 38.680122 ], [ -87.410874, 38.680112 ], [ -87.411863, 38.680011 ], [ -87.412674, 38.679863 ], [ -87.41287, 38.679815 ], [ -87.413268, 38.679715 ], [ -87.414353, 38.679397 ], [ -87.418792, 38.6781 ], [ -87.420272, 38.677668 ], [ -87.422175, 38.677111 ], [ -87.424345, 38.676477 ], [ -87.425022, 38.676285 ], [ -87.425732, 38.67613 ], [ -87.426394, 38.675999 ], [ -87.427615, 38.675806 ], [ -87.427959, 38.67577 ], [ -87.429089, 38.675654 ], [ -87.429935, 38.675604 ], [ -87.43115, 38.675532 ], [ -87.434797, 38.675318 ], [ -87.436013, 38.675247 ], [ -87.43765, 38.67515 ], [ -87.442561, 38.674862 ], [ -87.444199, 38.674766 ], [ -87.445876, 38.674667 ], [ -87.450911, 38.674372 ], [ -87.452589, 38.674274 ], [ -87.452796, 38.674262 ], [ -87.454727, 38.674158 ], [ -87.455267, 38.674129 ], [ -87.457015, 38.674088 ], [ -87.45864, 38.674101 ], [ -87.46091, 38.674203 ], [ -87.461146, 38.674218 ], [ -87.463007, 38.674339 ], [ -87.463283, 38.674357 ], [ -87.464829, 38.674457 ], [ -87.469467, 38.674759 ], [ -87.471014, 38.67486 ], [ -87.471032, 38.674861 ], [ -87.471088, 38.674864 ], [ -87.471107, 38.674866 ], [ -87.472502, 38.674956 ], [ -87.473207, 38.675024 ], [ -87.473259, 38.675031 ], [ -87.474351, 38.67519 ], [ -87.475361, 38.675395 ], [ -87.476634, 38.675732 ], [ -87.478315, 38.676302 ], [ -87.479491, 38.676731 ], [ -87.48152, 38.677472 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519164, 38.707168 ], [ -87.518035, 38.707236 ], [ -87.510966, 38.707614 ], [ -87.51012, 38.70764 ], [ -87.509043, 38.707618 ], [ -87.507715, 38.707509 ], [ -87.507411, 38.707469 ], [ -87.506619, 38.707365 ], [ -87.505339, 38.70709 ], [ -87.504757, 38.706939 ], [ -87.504247, 38.706786 ], [ -87.503246, 38.706435 ], [ -87.503056, 38.706374 ], [ -87.502074, 38.705954 ], [ -87.500779, 38.705286 ], [ -87.499514, 38.704462 ], [ -87.499166, 38.704186 ], [ -87.498572, 38.703703 ], [ -87.49774, 38.702914 ], [ -87.497455, 38.702593 ], [ -87.496566, 38.701514 ], [ -87.496503, 38.701419 ], [ -87.496245, 38.701028 ], [ -87.496103, 38.700811 ], [ -87.496005, 38.700662 ], [ -87.495964, 38.700589 ], [ -87.495915, 38.700501 ], [ -87.495768, 38.70024 ], [ -87.495732, 38.700177 ], [ -87.495492, 38.699671 ], [ -87.494808, 38.697959 ], [ -87.494534, 38.697258 ], [ -87.494458, 38.696998 ], [ -87.494363, 38.696786 ], [ -87.494297, 38.696639 ], [ -87.494111, 38.696222 ], [ -87.493992, 38.695752 ], [ -87.493809, 38.695239 ], [ -87.49368, 38.694877 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335218, 38.668251 ], [ -87.33426, 38.668057 ], [ -87.3334, 38.667877 ], [ -87.332898, 38.667773 ], [ -87.331725, 38.667567 ], [ -87.329113, 38.666923 ], [ -87.328527, 38.666724 ], [ -87.327747, 38.666439 ], [ -87.327283, 38.666279 ], [ -87.32678, 38.666093 ], [ -87.326294, 38.665906 ], [ -87.325641, 38.665626 ], [ -87.324279, 38.665042 ], [ -87.322648, 38.664236 ], [ -87.318258, 38.662122 ], [ -87.317899, 38.661955 ], [ -87.317322, 38.661687 ], [ -87.316209, 38.661251 ], [ -87.310667, 38.658591 ], [ -87.309814, 38.658194 ], [ -87.304662, 38.655679 ], [ -87.301676, 38.654296 ], [ -87.297607, 38.652353 ], [ -87.295148, 38.651201 ], [ -87.294866, 38.651089 ], [ -87.29414, 38.650801 ], [ -87.293121, 38.650419 ], [ -87.292092, 38.650055 ], [ -87.29053, 38.64944 ], [ -87.289312, 38.64909 ], [ -87.288778, 38.648907 ], [ -87.286669, 38.648328 ], [ -87.285823, 38.648092 ], [ -87.282677, 38.647467 ], [ -87.282197, 38.647338 ], [ -87.280773, 38.647102 ], [ -87.276089, 38.646363 ], [ -87.274834, 38.646208 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274834, 38.646208 ], [ -87.271649, 38.645728 ], [ -87.269891, 38.645616 ], [ -87.267998, 38.645501 ], [ -87.26543, 38.645452 ], [ -87.263235, 38.645577 ], [ -87.251603, 38.646362 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492763, 38.692669 ], [ -87.493384, 38.694147 ], [ -87.493618, 38.694722 ], [ -87.493637, 38.694768 ], [ -87.49368, 38.694877 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487757, 38.678537 ], [ -87.488092, 38.678807 ], [ -87.488491, 38.679188 ], [ -87.488617, 38.679337 ], [ -87.489055, 38.679851 ], [ -87.489303, 38.680211 ], [ -87.489709, 38.680951 ], [ -87.489868, 38.681355 ], [ -87.490018, 38.681839 ], [ -87.490121, 38.682365 ], [ -87.490128, 38.682465 ], [ -87.490222, 38.68364 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.48152, 38.677472 ], [ -87.482067, 38.677672 ], [ -87.48273, 38.677907 ], [ -87.483614, 38.678222 ], [ -87.484159, 38.678394 ], [ -87.48477, 38.678545 ], [ -87.485512, 38.678654 ], [ -87.486068, 38.678689 ], [ -87.48648, 38.67868 ], [ -87.486683, 38.678677 ], [ -87.487757, 38.678537 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496558, 38.693356 ], [ -87.496313, 38.693483 ], [ -87.495395, 38.693924 ], [ -87.494493, 38.694356 ], [ -87.493845, 38.694668 ], [ -87.493637, 38.694768 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519189, 38.707404 ], [ -87.518072, 38.707485 ], [ -87.510865, 38.707856 ], [ -87.510091, 38.707872 ], [ -87.509778, 38.707879 ], [ -87.50964, 38.707875 ], [ -87.50905, 38.707863 ], [ -87.508293, 38.707814 ], [ -87.507844, 38.707769 ], [ -87.507783, 38.707762 ], [ -87.5076, 38.707744 ], [ -87.50754, 38.707738 ], [ -87.507369, 38.707721 ], [ -87.506317, 38.707568 ], [ -87.505755, 38.707455 ], [ -87.505495, 38.70739 ], [ -87.504492, 38.70714 ], [ -87.503791, 38.706921 ], [ -87.503136, 38.706685 ], [ -87.502313, 38.70635 ], [ -87.500631, 38.705491 ], [ -87.499819, 38.704982 ], [ -87.499797, 38.704966 ], [ -87.498771, 38.70423 ], [ -87.498436, 38.70397 ], [ -87.498145, 38.703713 ], [ -87.497964, 38.703553 ], [ -87.497873, 38.703473 ], [ -87.497446, 38.703048 ], [ -87.497399, 38.703002 ], [ -87.497288, 38.702867 ], [ -87.497089, 38.702626 ], [ -87.496602, 38.702034 ], [ -87.496503, 38.701898 ], [ -87.496321, 38.701646 ], [ -87.496261, 38.701563 ], [ -87.496214, 38.701491 ], [ -87.496024, 38.701197 ], [ -87.495908, 38.701018 ], [ -87.495885, 38.700983 ], [ -87.49582, 38.700883 ], [ -87.495808, 38.70086 ], [ -87.4958, 38.700845 ], [ -87.495776, 38.700802 ], [ -87.495769, 38.700788 ], [ -87.495759, 38.70077 ], [ -87.495732, 38.700719 ], [ -87.495723, 38.700702 ], [ -87.495195, 38.699692 ], [ -87.494787, 38.698755 ], [ -87.494537, 38.698074 ], [ -87.494083, 38.696977 ], [ -87.49404, 38.696775 ], [ -87.493374, 38.69508 ], [ -87.493356, 38.695033 ], [ -87.493314, 38.694923 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.48152, 38.677472 ], [ -87.482067, 38.677672 ], [ -87.48273, 38.677907 ], [ -87.483614, 38.678222 ], [ -87.484159, 38.678394 ], [ -87.48477, 38.678545 ], [ -87.485512, 38.678654 ], [ -87.486068, 38.678689 ], [ -87.48648, 38.67868 ], [ -87.486683, 38.678677 ], [ -87.487757, 38.678537 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496984, 38.693215 ], [ -87.496856, 38.69325 ], [ -87.496558, 38.693356 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487757, 38.678537 ], [ -87.487412, 38.678283 ], [ -87.486466, 38.677724 ], [ -87.486408, 38.677698 ], [ -87.485906, 38.67747 ], [ -87.485163, 38.677196 ], [ -87.484366, 38.67698 ], [ -87.481827, 38.676417 ], [ -87.480275, 38.676074 ], [ -87.47846, 38.675672 ], [ -87.477432, 38.675445 ], [ -87.475316, 38.675016 ], [ -87.474559, 38.674913 ], [ -87.473898, 38.674845 ], [ -87.472966, 38.674781 ], [ -87.471113, 38.674656 ], [ -87.470941, 38.674644 ], [ -87.463278, 38.674153 ], [ -87.463007, 38.674135 ], [ -87.460882, 38.674 ], [ -87.458749, 38.673902 ], [ -87.45692, 38.673883 ], [ -87.45595, 38.673908 ], [ -87.453687, 38.674019 ], [ -87.452496, 38.674088 ], [ -87.435916, 38.675052 ], [ -87.430014, 38.675395 ], [ -87.429957, 38.675396 ], [ -87.4299, 38.675401 ], [ -87.429825, 38.675406 ], [ -87.428001, 38.675557 ], [ -87.426917, 38.675704 ], [ -87.425189, 38.676034 ], [ -87.423535, 38.676483 ], [ -87.42007, 38.677504 ], [ -87.41324, 38.679517 ], [ -87.412783, 38.679624 ], [ -87.412588, 38.679669 ], [ -87.411903, 38.679796 ], [ -87.411314, 38.679865 ], [ -87.410627, 38.679911 ], [ -87.408938, 38.679893 ], [ -87.40677, 38.679648 ], [ -87.402888, 38.67914 ], [ -87.399754, 38.678648 ], [ -87.395868, 38.678147 ], [ -87.393277, 38.677872 ], [ -87.389316, 38.677468 ], [ -87.388303, 38.677324 ], [ -87.385956, 38.677051 ], [ -87.381135, 38.676567 ], [ -87.378761, 38.676312 ], [ -87.374723, 38.675858 ], [ -87.373929, 38.675747 ], [ -87.371652, 38.67543 ], [ -87.369264, 38.675058 ], [ -87.368452, 38.674895 ], [ -87.367344, 38.674673 ], [ -87.361682, 38.673536 ], [ -87.356786, 38.672644 ], [ -87.3555, 38.672362 ], [ -87.351278, 38.671481 ], [ -87.349751, 38.671187 ], [ -87.339403, 38.669109 ], [ -87.335218, 38.668251 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.48152, 38.677472 ], [ -87.482563, 38.677884 ], [ -87.483464, 38.678206 ], [ -87.483486, 38.678214 ], [ -87.484369, 38.678599 ], [ -87.485236, 38.679097 ], [ -87.485975, 38.679658 ], [ -87.486335, 38.679985 ], [ -87.486655, 38.68032 ], [ -87.487128, 38.680933 ], [ -87.487605, 38.681735 ], [ -87.487922, 38.68232 ], [ -87.488424, 38.683245 ], [ -87.488943, 38.684131 ], [ -87.489251, 38.684707 ], [ -87.489533, 38.685294 ], [ -87.489922, 38.686156 ], [ -87.490512, 38.687651 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.49368, 38.694877 ], [ -87.493898, 38.694774 ], [ -87.494548, 38.694465 ], [ -87.495334, 38.69408 ], [ -87.495521, 38.69399 ], [ -87.495872, 38.693821 ], [ -87.496417, 38.693559 ], [ -87.496843, 38.693324 ], [ -87.496984, 38.693215 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.49185, 38.674263 ], [ -87.491447, 38.674538 ], [ -87.490839, 38.674933 ], [ -87.490179, 38.675364 ], [ -87.489596, 38.675819 ], [ -87.489072, 38.67633 ], [ -87.488635, 38.676833 ], [ -87.488245, 38.67743 ], [ -87.488218, 38.677473 ], [ -87.487888, 38.678143 ], [ -87.487757, 38.678537 ], [ -87.487661, 38.678825 ], [ -87.487569, 38.679206 ], [ -87.487508, 38.67965 ], [ -87.487507, 38.679691 ], [ -87.487499, 38.680355 ], [ -87.487597, 38.681138 ], [ -87.487807, 38.681828 ], [ -87.487964, 38.682206 ], [ -87.488393, 38.68308 ], [ -87.488527, 38.683352 ], [ -87.488943, 38.684131 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495063, 38.672244 ], [ -87.494983, 38.672303 ], [ -87.494746, 38.672482 ], [ -87.494667, 38.672543 ], [ -87.494589, 38.672602 ], [ -87.494341, 38.672793 ], [ -87.494188, 38.672912 ], [ -87.493712, 38.673281 ], [ -87.49286, 38.674143 ], [ -87.492806, 38.674199 ], [ -87.492496, 38.674586 ], [ -87.492478, 38.674611 ], [ -87.491812, 38.675565 ], [ -87.491404, 38.676211 ], [ -87.490949, 38.676933 ], [ -87.490592, 38.677602 ], [ -87.490421, 38.678039 ], [ -87.490208, 38.678904 ], [ -87.490169, 38.679363 ], [ -87.490198, 38.681712 ], [ -87.490222, 38.68364 ], [ -87.490232, 38.684447 ], [ -87.490238, 38.684858 ], [ -87.490279, 38.68541 ], [ -87.490463, 38.686485 ], [ -87.490562, 38.686839 ], [ -87.49068, 38.687259 ], [ -87.490809, 38.687608 ], [ -87.491151, 38.688487 ], [ -87.491194, 38.688616 ], [ -87.491257, 38.688802 ], [ -87.491385, 38.689151 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473008, 38.759481 ], [ -87.472902, 38.759754 ], [ -87.472864, 38.759851 ], [ -87.471896, 38.762235 ], [ -87.46963, 38.767872 ], [ -87.469207, 38.768911 ], [ -87.469163, 38.769028 ], [ -87.468812, 38.769967 ], [ -87.468208, 38.771626 ], [ -87.467569, 38.773389 ], [ -87.466888, 38.775267 ], [ -87.466576, 38.776142 ], [ -87.466303, 38.776873 ], [ -87.466049, 38.777653 ], [ -87.465862, 38.778254 ], [ -87.465593, 38.779235 ], [ -87.465363, 38.780229 ], [ -87.465333, 38.780374 ], [ -87.465271, 38.78067 ], [ -87.465022, 38.78219 ], [ -87.464655, 38.784542 ], [ -87.464057, 38.788495 ], [ -87.464021, 38.788706 ], [ -87.463977, 38.788963 ], [ -87.463821, 38.789678 ], [ -87.463692, 38.790198 ], [ -87.46355, 38.7907 ], [ -87.463406, 38.79109 ], [ -87.463191, 38.791632 ], [ -87.462943, 38.792217 ], [ -87.462624, 38.792834 ], [ -87.462362, 38.793321 ], [ -87.461891, 38.794072 ], [ -87.461316, 38.794898 ], [ -87.460649, 38.795766 ], [ -87.459608, 38.797167 ], [ -87.459045, 38.797914 ], [ -87.458287, 38.798939 ], [ -87.45772, 38.799688 ], [ -87.456593, 38.80122 ], [ -87.455937, 38.802093 ], [ -87.45478, 38.803624 ], [ -87.451509, 38.807994 ], [ -87.451085, 38.808548 ], [ -87.450761, 38.808972 ], [ -87.448992, 38.811348 ], [ -87.448448, 38.812094 ], [ -87.447992, 38.812799 ], [ -87.447357, 38.813848 ], [ -87.446969, 38.814613 ], [ -87.44682, 38.814938 ], [ -87.44665, 38.815337 ], [ -87.446511, 38.815685 ], [ -87.446275, 38.816324 ], [ -87.446089, 38.816887 ], [ -87.445871, 38.817638 ], [ -87.445644, 38.818508 ], [ -87.444769, 38.821946 ], [ -87.444488, 38.823033 ], [ -87.444409, 38.823371 ], [ -87.444348, 38.82363 ], [ -87.444216, 38.824039 ], [ -87.443747, 38.826027 ], [ -87.443572, 38.826686 ], [ -87.443214, 38.828114 ], [ -87.443009, 38.828903 ], [ -87.442832, 38.829634 ], [ -87.442347, 38.831557 ], [ -87.442256, 38.831875 ], [ -87.442197, 38.832121 ], [ -87.442124, 38.832422 ], [ -87.441415, 38.835189 ], [ -87.44104, 38.836714 ], [ -87.440192, 38.840023 ], [ -87.439957, 38.840973 ], [ -87.439701, 38.841979 ], [ -87.43961, 38.842336 ], [ -87.439317, 38.84351 ], [ -87.439084, 38.84441 ], [ -87.4386, 38.846336 ], [ -87.437282, 38.851519 ], [ -87.436973, 38.852712 ], [ -87.436797, 38.853452 ], [ -87.436485, 38.854654 ], [ -87.436176, 38.85591 ], [ -87.436041, 38.856412 ], [ -87.435962, 38.856723 ], [ -87.435766, 38.857494 ], [ -87.435541, 38.858421 ], [ -87.435057, 38.860307 ], [ -87.43458, 38.862213 ], [ -87.434206, 38.863657 ], [ -87.433744, 38.865493 ], [ -87.433616, 38.865924 ], [ -87.433418, 38.866762 ], [ -87.433354, 38.867117 ], [ -87.43333, 38.867318 ], [ -87.433275, 38.867687 ], [ -87.433247, 38.868087 ], [ -87.433245, 38.868536 ], [ -87.43326, 38.868957 ], [ -87.4333, 38.869358 ], [ -87.433362, 38.869779 ], [ -87.433437, 38.870158 ], [ -87.433573, 38.870681 ], [ -87.433715, 38.871134 ], [ -87.433883, 38.871574 ], [ -87.434075, 38.872013 ], [ -87.434247, 38.872337 ], [ -87.43444, 38.872703 ], [ -87.434667, 38.873071 ], [ -87.434861, 38.873361 ], [ -87.435005, 38.873576 ], [ -87.435328, 38.873983 ], [ -87.435761, 38.874474 ], [ -87.436447, 38.875189 ], [ -87.436775, 38.875514 ], [ -87.437169, 38.875916 ], [ -87.437407, 38.876154 ], [ -87.437732, 38.876479 ], [ -87.438773, 38.877542 ], [ -87.439122, 38.877907 ], [ -87.439402, 38.878221 ], [ -87.439669, 38.878543 ], [ -87.439991, 38.878947 ], [ -87.440263, 38.879316 ], [ -87.440523, 38.879691 ], [ -87.440782, 38.880089 ], [ -87.441052, 38.880531 ], [ -87.441299, 38.880971 ], [ -87.441732, 38.881872 ], [ -87.441753, 38.881913 ], [ -87.44177, 38.881957 ], [ -87.441931, 38.882331 ], [ -87.442097, 38.882755 ], [ -87.442229, 38.883141 ], [ -87.442411, 38.883743 ], [ -87.442567, 38.884368 ], [ -87.44268, 38.884956 ], [ -87.442779, 38.885617 ], [ -87.44284, 38.886273 ], [ -87.442865, 38.886907 ], [ -87.442855, 38.887509 ], [ -87.442823, 38.888071 ], [ -87.442785, 38.888488 ], [ -87.442657, 38.889313 ], [ -87.442567, 38.889777 ], [ -87.442463, 38.890189 ], [ -87.44232, 38.890705 ], [ -87.442123, 38.891306 ], [ -87.441899, 38.891895 ], [ -87.440923, 38.894364 ], [ -87.439453, 38.898054 ], [ -87.439163, 38.898802 ], [ -87.439126, 38.898893 ], [ -87.437812, 38.902199 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274892, 38.646433 ], [ -87.276102, 38.646629 ], [ -87.277635, 38.646882 ], [ -87.277708, 38.646897 ], [ -87.279585, 38.647185 ], [ -87.283584, 38.647863 ], [ -87.284109, 38.647978 ], [ -87.285808, 38.648366 ], [ -87.287834, 38.648907 ], [ -87.288923, 38.649196 ], [ -87.289464, 38.649364 ], [ -87.290476, 38.649691 ], [ -87.290943, 38.649896 ], [ -87.291634, 38.650123 ], [ -87.292661, 38.650479 ], [ -87.29334, 38.650726 ], [ -87.293477, 38.650778 ], [ -87.293501, 38.650787 ], [ -87.294837, 38.651395 ], [ -87.296218, 38.652 ], [ -87.297514, 38.652609 ], [ -87.301423, 38.654461 ], [ -87.304624, 38.655962 ], [ -87.309665, 38.658391 ], [ -87.310435, 38.658752 ], [ -87.311783, 38.659385 ], [ -87.315972, 38.6614 ], [ -87.316888, 38.661815 ], [ -87.319754, 38.663148 ], [ -87.322241, 38.66434 ], [ -87.322712, 38.664594 ], [ -87.324075, 38.6652 ], [ -87.32538, 38.665796 ], [ -87.326572, 38.666269 ], [ -87.328227, 38.666855 ], [ -87.329276, 38.667196 ], [ -87.330411, 38.667489 ], [ -87.331914, 38.667839 ], [ -87.332888, 38.668028 ], [ -87.33502, 38.668478 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.48152, 38.677472 ], [ -87.482563, 38.677884 ], [ -87.483464, 38.678206 ], [ -87.483486, 38.678214 ], [ -87.484369, 38.678599 ], [ -87.485236, 38.679097 ], [ -87.485975, 38.679658 ], [ -87.486335, 38.679985 ], [ -87.486655, 38.68032 ], [ -87.487128, 38.680933 ], [ -87.487605, 38.681735 ], [ -87.487922, 38.68232 ], [ -87.488424, 38.683245 ], [ -87.488943, 38.684131 ], [ -87.489251, 38.684707 ], [ -87.489533, 38.685294 ], [ -87.489922, 38.686156 ], [ -87.490512, 38.687651 ], [ -87.490699, 38.688127 ], [ -87.490838, 38.688491 ], [ -87.490884, 38.688612 ], [ -87.491077, 38.689113 ], [ -87.491096, 38.689164 ], [ -87.49114, 38.689277 ], [ -87.491903, 38.691259 ], [ -87.491965, 38.691422 ], [ -87.492154, 38.691912 ], [ -87.492217, 38.692076 ], [ -87.492523, 38.692869 ], [ -87.493036, 38.694202 ], [ -87.493297, 38.69488 ], [ -87.493314, 38.694923 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493637, 38.694768 ], [ -87.493577, 38.694797 ], [ -87.493314, 38.694923 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493637, 38.694768 ], [ -87.493577, 38.694797 ], [ -87.493314, 38.694923 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.49185, 38.674263 ], [ -87.48986, 38.675516 ], [ -87.489777, 38.675561 ], [ -87.489377, 38.675785 ], [ -87.4889, 38.676011 ], [ -87.488509, 38.676173 ], [ -87.487619, 38.676457 ], [ -87.486613, 38.676674 ], [ -87.48565, 38.676792 ], [ -87.48494, 38.676804 ], [ -87.484125, 38.676768 ], [ -87.483267, 38.676659 ], [ -87.482675, 38.676543 ], [ -87.480275, 38.676074 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493314, 38.694923 ], [ -87.493265, 38.694947 ], [ -87.492823, 38.695159 ], [ -87.492303, 38.695409 ], [ -87.491137, 38.695968 ], [ -87.490204, 38.696416 ], [ -87.489938, 38.696543 ], [ -87.489139, 38.696927 ], [ -87.488874, 38.697055 ], [ -87.488414, 38.697275 ], [ -87.488053, 38.697449 ], [ -87.487548, 38.697701 ], [ -87.487086, 38.697976 ], [ -87.487065, 38.697989 ], [ -87.486671, 38.698255 ], [ -87.486644, 38.698275 ], [ -87.48606, 38.698715 ], [ -87.485949, 38.6988 ], [ -87.485527, 38.699184 ], [ -87.485126, 38.699597 ], [ -87.484827, 38.699954 ], [ -87.484578, 38.700319 ], [ -87.484282, 38.700756 ], [ -87.484184, 38.700935 ], [ -87.484097, 38.701092 ], [ -87.48403, 38.701215 ], [ -87.483878, 38.701584 ], [ -87.48381, 38.701751 ], [ -87.483733, 38.70194 ], [ -87.483717, 38.701997 ], [ -87.483514, 38.702731 ], [ -87.48351, 38.70276 ], [ -87.483481, 38.703022 ], [ -87.483436, 38.703407 ], [ -87.483415, 38.70359 ], [ -87.48342, 38.70457 ], [ -87.483435, 38.704957 ], [ -87.483468, 38.705802 ], [ -87.483567, 38.708337 ], [ -87.483601, 38.709182 ], [ -87.483606, 38.70933 ], [ -87.483624, 38.709774 ], [ -87.48363, 38.709923 ], [ -87.483653, 38.710531 ], [ -87.483722, 38.712355 ], [ -87.483744, 38.712918 ], [ -87.483747, 38.712963 ], [ -87.483748, 38.713008 ], [ -87.483776, 38.713733 ], [ -87.483866, 38.716045 ], [ -87.483896, 38.716816 ], [ -87.483901, 38.716947 ], [ -87.483916, 38.717343 ], [ -87.483921, 38.717475 ], [ -87.484018, 38.719989 ], [ -87.484057, 38.720981 ], [ -87.484064, 38.722291 ], [ -87.484038, 38.722676 ], [ -87.483989, 38.723176 ], [ -87.48394, 38.723685 ], [ -87.483433, 38.727158 ], [ -87.483383, 38.727493 ], [ -87.48302, 38.729984 ], [ -87.482968, 38.730349 ], [ -87.482811, 38.731445 ], [ -87.48276, 38.731811 ], [ -87.482724, 38.732048 ], [ -87.482616, 38.732759 ], [ -87.482581, 38.732997 ], [ -87.482577, 38.733019 ], [ -87.482568, 38.733085 ], [ -87.482566, 38.733108 ], [ -87.482556, 38.733181 ], [ -87.482525, 38.733403 ], [ -87.482516, 38.733477 ], [ -87.482507, 38.733542 ], [ -87.48243, 38.734012 ], [ -87.482387, 38.734282 ], [ -87.482217, 38.735101 ], [ -87.482086, 38.735602 ], [ -87.481949, 38.736128 ], [ -87.481946, 38.736138 ], [ -87.481857, 38.736412 ], [ -87.481704, 38.736892 ], [ -87.481568, 38.73726 ], [ -87.481466, 38.737541 ], [ -87.481458, 38.73756 ], [ -87.481435, 38.737618 ], [ -87.481428, 38.737638 ], [ -87.481316, 38.737925 ], [ -87.481223, 38.738167 ], [ -87.480976, 38.738787 ], [ -87.480863, 38.739075 ], [ -87.480847, 38.739115 ], [ -87.480821, 38.739175 ], [ -87.480696, 38.739474 ], [ -87.480681, 38.739512 ], [ -87.480657, 38.739575 ], [ -87.480507, 38.739958 ], [ -87.480096, 38.740965 ], [ -87.479425, 38.742642 ], [ -87.478786, 38.744242 ], [ -87.478365, 38.74531 ], [ -87.478009, 38.746181 ], [ -87.475812, 38.751678 ], [ -87.475743, 38.75185 ], [ -87.475162, 38.753318 ], [ -87.474818, 38.754165 ], [ -87.474516, 38.75492 ], [ -87.474172, 38.755781 ], [ -87.474132, 38.755876 ], [ -87.474035, 38.756114 ], [ -87.473944, 38.756354 ], [ -87.473778, 38.756743 ], [ -87.47333, 38.757886 ], [ -87.472978, 38.758745 ], [ -87.472959, 38.758793 ], [ -87.47272, 38.759393 ], [ -87.472596, 38.759703 ], [ -87.471864, 38.761535 ], [ -87.471792, 38.761716 ], [ -87.469651, 38.767025 ], [ -87.469244, 38.768036 ], [ -87.469038, 38.768579 ], [ -87.468921, 38.768859 ], [ -87.468866, 38.768974 ], [ -87.468619, 38.769625 ], [ -87.468579, 38.769733 ], [ -87.468077, 38.771108 ], [ -87.46762, 38.772385 ], [ -87.467563, 38.772547 ], [ -87.467296, 38.773267 ], [ -87.467215, 38.773485 ], [ -87.466869, 38.774439 ], [ -87.466796, 38.774642 ], [ -87.466559, 38.775312 ], [ -87.466109, 38.776532 ], [ -87.465645, 38.777924 ], [ -87.465403, 38.778803 ], [ -87.465328, 38.779077 ], [ -87.465125, 38.779898 ], [ -87.465055, 38.780224 ], [ -87.464968, 38.780624 ], [ -87.46482, 38.781498 ], [ -87.464756, 38.781916 ], [ -87.464258, 38.785225 ], [ -87.464077, 38.786348 ], [ -87.463973, 38.787011 ], [ -87.463885, 38.787581 ], [ -87.463767, 38.788393 ], [ -87.46371, 38.78871 ], [ -87.463673, 38.788915 ], [ -87.463603, 38.789306 ], [ -87.46355, 38.789529 ], [ -87.463503, 38.789733 ], [ -87.463489, 38.789792 ], [ -87.463369, 38.790163 ], [ -87.46324, 38.790605 ], [ -87.46306, 38.7911 ], [ -87.462875, 38.791551 ], [ -87.462673, 38.792005 ], [ -87.462474, 38.792429 ], [ -87.46228, 38.792803 ], [ -87.462265, 38.792833 ], [ -87.46206, 38.793204 ], [ -87.461569, 38.793987 ], [ -87.461218, 38.794502 ], [ -87.460251, 38.795792 ], [ -87.459597, 38.796677 ], [ -87.459129, 38.797299 ], [ -87.458471, 38.798196 ], [ -87.458246, 38.798511 ], [ -87.457374, 38.799655 ], [ -87.456475, 38.800859 ], [ -87.455868, 38.801674 ], [ -87.454485, 38.803507 ], [ -87.454261, 38.803801 ], [ -87.453787, 38.804438 ], [ -87.453705, 38.80455 ], [ -87.453017, 38.80546 ], [ -87.452507, 38.806152 ], [ -87.451693, 38.807231 ], [ -87.451185, 38.807906 ], [ -87.450995, 38.808162 ], [ -87.45015, 38.809304 ], [ -87.449384, 38.81032 ], [ -87.44898, 38.810847 ], [ -87.448804, 38.811079 ], [ -87.448426, 38.811601 ], [ -87.447994, 38.812225 ], [ -87.447602, 38.812835 ], [ -87.447409, 38.813169 ], [ -87.447164, 38.813609 ], [ -87.446918, 38.814063 ], [ -87.446673, 38.814548 ], [ -87.446521, 38.814861 ], [ -87.446432, 38.815071 ], [ -87.446269, 38.815423 ], [ -87.445989, 38.816147 ], [ -87.445693, 38.817046 ], [ -87.445515, 38.817681 ], [ -87.445352, 38.818332 ], [ -87.445205, 38.818886 ], [ -87.444934, 38.819964 ], [ -87.444567, 38.821433 ], [ -87.444296, 38.822491 ], [ -87.444174, 38.822992 ], [ -87.444113, 38.823219 ], [ -87.443991, 38.82368 ], [ -87.443658, 38.824999 ], [ -87.443139, 38.827065 ], [ -87.442906, 38.827969 ], [ -87.442623, 38.829121 ], [ -87.44231, 38.830345 ], [ -87.442005, 38.831542 ], [ -87.441894, 38.831943 ], [ -87.441848, 38.832124 ], [ -87.441765, 38.832447 ], [ -87.441627, 38.833012 ], [ -87.441349, 38.834098 ], [ -87.441153, 38.83487 ], [ -87.440691, 38.836726 ], [ -87.44019, 38.838688 ], [ -87.439926, 38.839743 ], [ -87.439855, 38.84002 ], [ -87.439353, 38.841993 ], [ -87.438614, 38.844924 ], [ -87.438078, 38.847053 ], [ -87.436966, 38.85142 ], [ -87.436771, 38.852169 ], [ -87.436676, 38.852582 ], [ -87.436386, 38.853713 ], [ -87.436226, 38.85434 ], [ -87.436079, 38.854935 ], [ -87.435859, 38.85579 ], [ -87.435648, 38.856645 ], [ -87.435301, 38.858026 ], [ -87.43511, 38.85875 ], [ -87.435048, 38.85899 ], [ -87.434291, 38.861968 ], [ -87.433823, 38.863857 ], [ -87.433508, 38.865069 ], [ -87.43337, 38.865605 ], [ -87.433138, 38.866653 ], [ -87.43305, 38.867147 ], [ -87.433038, 38.86719 ], [ -87.433037, 38.867236 ], [ -87.432967, 38.867852 ], [ -87.432951, 38.868242 ], [ -87.432944, 38.868435 ], [ -87.432961, 38.868971 ], [ -87.433012, 38.869466 ], [ -87.433125, 38.870143 ], [ -87.433251, 38.870644 ], [ -87.433425, 38.871199 ], [ -87.433482, 38.871346 ], [ -87.433644, 38.871763 ], [ -87.433906, 38.872314 ], [ -87.433986, 38.872465 ], [ -87.434154, 38.872781 ], [ -87.434237, 38.872916 ], [ -87.434328, 38.873063 ], [ -87.43453, 38.873371 ], [ -87.434561, 38.873419 ], [ -87.434794, 38.873747 ], [ -87.435087, 38.874126 ], [ -87.435252, 38.874327 ], [ -87.435344, 38.874428 ], [ -87.435633, 38.874742 ], [ -87.43596, 38.875077 ], [ -87.436028, 38.875146 ], [ -87.436952, 38.876073 ], [ -87.437283, 38.876405 ], [ -87.437346, 38.876469 ], [ -87.437477, 38.8766 ], [ -87.437538, 38.876662 ], [ -87.437602, 38.876727 ], [ -87.438442, 38.877584 ], [ -87.438463, 38.877606 ], [ -87.438932, 38.878103 ], [ -87.43928, 38.878505 ], [ -87.439556, 38.878841 ], [ -87.439837, 38.879204 ], [ -87.440264, 38.879815 ], [ -87.440546, 38.880243 ], [ -87.440713, 38.880525 ], [ -87.440839, 38.880739 ], [ -87.441117, 38.881246 ], [ -87.441294, 38.881611 ], [ -87.441343, 38.881713 ], [ -87.441357, 38.881741 ], [ -87.441477, 38.882025 ], [ -87.441522, 38.88213 ], [ -87.441648, 38.8824 ], [ -87.441793, 38.882775 ], [ -87.44192, 38.883148 ], [ -87.442033, 38.883514 ], [ -87.442172, 38.884024 ], [ -87.442202, 38.884131 ], [ -87.442341, 38.884761 ], [ -87.442439, 38.885364 ], [ -87.442495, 38.885775 ], [ -87.442528, 38.886213 ], [ -87.442559, 38.886733 ], [ -87.442555, 38.887282 ], [ -87.442534, 38.887849 ], [ -87.44246, 38.888651 ], [ -87.44239, 38.889095 ], [ -87.442289, 38.889621 ], [ -87.442204, 38.889982 ], [ -87.44216, 38.890171 ], [ -87.442024, 38.890671 ], [ -87.441864, 38.891166 ], [ -87.441585, 38.891889 ], [ -87.441116, 38.893082 ], [ -87.441033, 38.893284 ], [ -87.440815, 38.893818 ], [ -87.43937, 38.897467 ], [ -87.439152, 38.898019 ], [ -87.438838, 38.898807 ], [ -87.438816, 38.898862 ], [ -87.43855, 38.899534 ], [ -87.437756, 38.901552 ], [ -87.437504, 38.902194 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.56409, 38.490846 ], [ -87.564081, 38.490938 ], [ -87.564075, 38.490997 ], [ -87.564073, 38.49103 ], [ -87.564033, 38.491451 ], [ -87.564023, 38.491558 ], [ -87.564016, 38.491603 ], [ -87.563955, 38.491998 ], [ -87.563772, 38.493184 ], [ -87.563712, 38.49358 ], [ -87.563507, 38.494913 ], [ -87.56294, 38.498603 ], [ -87.562902, 38.498913 ], [ -87.562743, 38.500253 ], [ -87.562491, 38.502023 ], [ -87.562274, 38.503445 ], [ -87.561613, 38.507803 ], [ -87.561436, 38.508642 ], [ -87.561122, 38.509605 ], [ -87.56096, 38.509998 ], [ -87.560558, 38.510787 ], [ -87.560066, 38.511576 ], [ -87.55979, 38.511955 ], [ -87.559344, 38.512487 ], [ -87.559234, 38.51262 ], [ -87.55887, 38.512993 ], [ -87.558076, 38.513721 ], [ -87.55691, 38.514593 ], [ -87.556005, 38.515135 ], [ -87.555464, 38.515422 ], [ -87.55497, 38.515648 ], [ -87.548944, 38.518413 ], [ -87.546936, 38.519335 ], [ -87.545311, 38.52008 ], [ -87.54281, 38.521229 ], [ -87.542465, 38.5214 ], [ -87.541758, 38.521817 ], [ -87.541405, 38.522054 ], [ -87.540704, 38.522598 ], [ -87.54064, 38.52266 ], [ -87.540052, 38.523236 ], [ -87.539622, 38.523724 ], [ -87.539431, 38.523973 ], [ -87.539407, 38.524003 ], [ -87.539335, 38.524096 ], [ -87.539312, 38.524127 ], [ -87.539022, 38.524579 ], [ -87.538822, 38.524974 ], [ -87.538632, 38.525431 ], [ -87.538489, 38.525779 ], [ -87.538243, 38.526728 ], [ -87.538144, 38.527559 ], [ -87.538151, 38.529329 ], [ -87.538155, 38.52979 ], [ -87.53817, 38.531265 ], [ -87.538177, 38.532012 ], [ -87.538198, 38.534255 ], [ -87.538206, 38.535003 ], [ -87.538211, 38.535561 ], [ -87.538222, 38.536626 ], [ -87.538243, 38.538547 ], [ -87.538275, 38.541498 ], [ -87.538293, 38.543122 ], [ -87.538298, 38.54363 ], [ -87.538306, 38.54434 ], [ -87.538314, 38.545155 ], [ -87.53832, 38.545664 ], [ -87.538328, 38.546362 ], [ -87.538345, 38.547516 ], [ -87.538399, 38.551161 ], [ -87.538435, 38.551912 ], [ -87.538513, 38.552679 ], [ -87.538548, 38.553067 ], [ -87.53858, 38.553412 ], [ -87.538598, 38.554223 ], [ -87.538598, 38.554918 ], [ -87.538596, 38.556112 ], [ -87.538592, 38.559697 ], [ -87.538592, 38.560892 ], [ -87.53859, 38.56308 ], [ -87.53859, 38.563512 ], [ -87.538595, 38.569646 ], [ -87.538597, 38.571835 ], [ -87.538597, 38.573302 ], [ -87.538599, 38.574951 ], [ -87.538637, 38.577703 ], [ -87.538658, 38.579171 ], [ -87.538668, 38.579907 ], [ -87.5387, 38.582115 ], [ -87.538711, 38.582852 ], [ -87.538719, 38.583433 ], [ -87.538745, 38.585177 ], [ -87.538754, 38.585759 ], [ -87.538767, 38.587721 ], [ -87.538795, 38.591918 ], [ -87.538834, 38.593609 ], [ -87.538857, 38.594556 ], [ -87.538903, 38.595571 ], [ -87.538977, 38.597237 ], [ -87.539082, 38.599572 ], [ -87.539082, 38.602239 ], [ -87.539082, 38.603908 ], [ -87.539082, 38.604124 ], [ -87.539082, 38.604774 ], [ -87.539082, 38.604991 ], [ -87.539082, 38.606051 ], [ -87.539082, 38.607857 ], [ -87.539058, 38.609232 ], [ -87.539052, 38.609614 ], [ -87.538956, 38.610286 ], [ -87.538925, 38.610506 ], [ -87.538863, 38.610746 ], [ -87.538675, 38.611481 ], [ -87.538485, 38.612004 ], [ -87.538447, 38.612092 ], [ -87.538261, 38.612524 ], [ -87.53814, 38.612801 ], [ -87.537779, 38.613635 ], [ -87.537659, 38.613913 ], [ -87.537172, 38.615036 ], [ -87.537038, 38.615347 ], [ -87.53572, 38.618409 ], [ -87.53524, 38.619525 ], [ -87.535236, 38.619534 ], [ -87.53521, 38.61959 ], [ -87.535134, 38.619759 ], [ -87.53511, 38.619816 ], [ -87.534678, 38.62078 ], [ -87.534641, 38.620871 ], [ -87.5339, 38.62272 ], [ -87.533445, 38.624121 ], [ -87.533419, 38.624204 ], [ -87.533153, 38.625239 ], [ -87.533037, 38.625687 ], [ -87.532875, 38.626509 ], [ -87.532709, 38.627355 ], [ -87.532185, 38.630349 ], [ -87.531962, 38.631631 ], [ -87.531908, 38.63194 ], [ -87.531746, 38.632867 ], [ -87.531692, 38.633176 ], [ -87.531412, 38.634775 ], [ -87.530575, 38.639571 ], [ -87.530296, 38.641171 ], [ -87.53002, 38.642744 ], [ -87.529696, 38.644599 ], [ -87.529446, 38.6455 ], [ -87.52904, 38.646474 ], [ -87.52859, 38.647276 ], [ -87.528576, 38.647302 ], [ -87.528042, 38.648107 ], [ -87.527852, 38.648352 ], [ -87.527771, 38.648443 ], [ -87.527657, 38.648569 ], [ -87.52755, 38.648687 ], [ -87.527231, 38.649044 ], [ -87.527178, 38.649104 ], [ -87.52712, 38.649159 ], [ -87.526471, 38.649779 ], [ -87.526353, 38.649873 ], [ -87.525993, 38.650165 ], [ -87.525682, 38.650417 ], [ -87.523846, 38.65177 ], [ -87.523003, 38.652393 ], [ -87.522984, 38.652406 ], [ -87.522928, 38.652448 ], [ -87.52291, 38.652462 ], [ -87.522262, 38.652939 ], [ -87.520318, 38.654371 ], [ -87.519985, 38.654616 ], [ -87.51989, 38.654688 ], [ -87.519671, 38.654849 ], [ -87.518916, 38.655402 ], [ -87.516653, 38.657062 ], [ -87.516564, 38.657128 ], [ -87.515887, 38.6576 ], [ -87.514839, 38.65833 ], [ -87.513328, 38.659356 ], [ -87.513098, 38.659527 ], [ -87.512814, 38.659726 ], [ -87.51264, 38.65985 ], [ -87.512569, 38.6599 ], [ -87.511856, 38.660342 ], [ -87.509523, 38.661853 ], [ -87.509431, 38.661914 ], [ -87.505461, 38.664549 ], [ -87.505408, 38.664584 ], [ -87.505252, 38.664691 ], [ -87.5052, 38.664727 ], [ -87.505031, 38.664842 ], [ -87.504525, 38.665186 ], [ -87.504357, 38.665302 ], [ -87.504107, 38.665473 ], [ -87.503294, 38.666044 ], [ -87.503195, 38.666117 ], [ -87.500576, 38.668082 ], [ -87.499791, 38.668674 ], [ -87.498659, 38.669529 ], [ -87.498332, 38.669775 ], [ -87.497353, 38.670514 ], [ -87.497027, 38.670761 ], [ -87.49683, 38.670909 ], [ -87.496241, 38.671354 ], [ -87.496045, 38.671503 ], [ -87.495848, 38.671651 ], [ -87.495259, 38.672095 ], [ -87.495063, 38.672244 ], [ -87.494983, 38.672303 ], [ -87.494746, 38.672482 ], [ -87.494667, 38.672543 ], [ -87.494589, 38.672602 ], [ -87.494341, 38.672793 ], [ -87.494188, 38.672912 ], [ -87.493712, 38.673281 ], [ -87.49286, 38.674143 ], [ -87.492806, 38.674199 ], [ -87.492496, 38.674586 ], [ -87.492478, 38.674611 ], [ -87.491812, 38.675565 ], [ -87.491404, 38.676211 ], [ -87.490949, 38.676933 ], [ -87.490592, 38.677602 ], [ -87.490421, 38.678039 ], [ -87.490208, 38.678904 ], [ -87.490169, 38.679363 ], [ -87.490198, 38.681712 ], [ -87.490222, 38.68364 ], [ -87.490232, 38.684447 ], [ -87.490238, 38.684858 ], [ -87.490279, 38.68541 ], [ -87.490463, 38.686485 ], [ -87.490562, 38.686839 ], [ -87.49068, 38.687259 ], [ -87.490809, 38.687608 ], [ -87.491151, 38.688487 ], [ -87.491194, 38.688616 ], [ -87.491257, 38.688802 ], [ -87.491385, 38.689151 ], [ -87.491408, 38.68921 ], [ -87.491432, 38.689271 ], [ -87.49219, 38.691186 ], [ -87.492343, 38.691572 ], [ -87.492763, 38.692669 ], [ -87.493384, 38.694147 ], [ -87.493618, 38.694722 ], [ -87.493637, 38.694768 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.48152, 38.677472 ], [ -87.479491, 38.676731 ], [ -87.478315, 38.676302 ], [ -87.476634, 38.675732 ], [ -87.475361, 38.675395 ], [ -87.474351, 38.67519 ], [ -87.473259, 38.675031 ], [ -87.473207, 38.675024 ], [ -87.472502, 38.674956 ], [ -87.471107, 38.674866 ], [ -87.471088, 38.674864 ], [ -87.471032, 38.674861 ], [ -87.471014, 38.67486 ], [ -87.469467, 38.674759 ], [ -87.464829, 38.674457 ], [ -87.463283, 38.674357 ], [ -87.463007, 38.674339 ], [ -87.461146, 38.674218 ], [ -87.46091, 38.674203 ], [ -87.45864, 38.674101 ], [ -87.457015, 38.674088 ], [ -87.455267, 38.674129 ], [ -87.454727, 38.674158 ], [ -87.452796, 38.674262 ], [ -87.452589, 38.674274 ], [ -87.450911, 38.674372 ], [ -87.445876, 38.674667 ], [ -87.444199, 38.674766 ], [ -87.442561, 38.674862 ], [ -87.43765, 38.67515 ], [ -87.436013, 38.675247 ], [ -87.434797, 38.675318 ], [ -87.43115, 38.675532 ], [ -87.429935, 38.675604 ], [ -87.429089, 38.675654 ], [ -87.427959, 38.67577 ], [ -87.427615, 38.675806 ], [ -87.426394, 38.675999 ], [ -87.425732, 38.67613 ], [ -87.425022, 38.676285 ], [ -87.424345, 38.676477 ], [ -87.422175, 38.677111 ], [ -87.420272, 38.677668 ], [ -87.418792, 38.6781 ], [ -87.414353, 38.679397 ], [ -87.413268, 38.679715 ], [ -87.41287, 38.679815 ], [ -87.412674, 38.679863 ], [ -87.411863, 38.680011 ], [ -87.410874, 38.680112 ], [ -87.410786, 38.680122 ], [ -87.410016, 38.680151 ], [ -87.409158, 38.680119 ], [ -87.4089, 38.680094 ], [ -87.406838, 38.679861 ], [ -87.406106, 38.679778 ], [ -87.404842, 38.679635 ], [ -87.402835, 38.679409 ], [ -87.399783, 38.678913 ], [ -87.395811, 38.678392 ], [ -87.393333, 38.678137 ], [ -87.388114, 38.677532 ], [ -87.385832, 38.677308 ], [ -87.380974, 38.676804 ], [ -87.378563, 38.676539 ], [ -87.374224, 38.676099 ], [ -87.372048, 38.675772 ], [ -87.371126, 38.675642 ], [ -87.369643, 38.675344 ], [ -87.369017, 38.675219 ], [ -87.368309, 38.675077 ], [ -87.367209, 38.67488 ], [ -87.366457, 38.674745 ], [ -87.363219, 38.67409 ], [ -87.361561, 38.673781 ], [ -87.3567, 38.672842 ], [ -87.355452, 38.672596 ], [ -87.352193, 38.671899 ], [ -87.351278, 38.671713 ], [ -87.350852, 38.671635 ], [ -87.349938, 38.671448 ], [ -87.348744, 38.671206 ], [ -87.347253, 38.670927 ], [ -87.345758, 38.670609 ], [ -87.341391, 38.66975 ], [ -87.33935, 38.669333 ], [ -87.338629, 38.66919 ], [ -87.337419, 38.668971 ], [ -87.335885, 38.668653 ], [ -87.33502, 38.668478 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251756, 38.646594 ], [ -87.264972, 38.645702 ], [ -87.265562, 38.645689 ], [ -87.266057, 38.645677 ], [ -87.266338, 38.645671 ], [ -87.266637, 38.645677 ], [ -87.267099, 38.645685 ], [ -87.267543, 38.64571 ], [ -87.268038, 38.645739 ], [ -87.269408, 38.645816 ], [ -87.269556, 38.645825 ], [ -87.269878, 38.64582 ], [ -87.271724, 38.645938 ], [ -87.274892, 38.646433 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.50929, 38.661736 ], [ -87.505359, 38.664344 ], [ -87.50504, 38.664555 ], [ -87.504241, 38.66511 ], [ -87.503447, 38.665661 ], [ -87.5018, 38.666881 ], [ -87.500356, 38.667961 ], [ -87.498473, 38.669382 ], [ -87.498433, 38.669413 ], [ -87.498391, 38.669444 ], [ -87.495853, 38.67136 ], [ -87.494971, 38.672025 ], [ -87.49487, 38.6721 ], [ -87.494567, 38.672328 ], [ -87.494467, 38.672405 ], [ -87.494418, 38.672442 ], [ -87.494294, 38.672533 ], [ -87.493951, 38.672787 ], [ -87.493191, 38.673349 ], [ -87.49238, 38.673901 ], [ -87.49185, 38.674263 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490512, 38.687651 ], [ -87.490699, 38.688127 ], [ -87.490838, 38.688491 ], [ -87.490884, 38.688612 ], [ -87.491077, 38.689113 ], [ -87.491096, 38.689164 ], [ -87.49114, 38.689277 ], [ -87.491903, 38.691259 ], [ -87.491965, 38.691422 ], [ -87.492154, 38.691912 ], [ -87.492217, 38.692076 ], [ -87.492523, 38.692869 ], [ -87.493036, 38.694202 ], [ -87.493297, 38.69488 ], [ -87.493314, 38.694923 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492478, 38.674611 ], [ -87.491958, 38.675279 ], [ -87.491722, 38.675625 ], [ -87.491286, 38.676266 ], [ -87.49097, 38.676671 ], [ -87.490676, 38.676989 ], [ -87.490314, 38.677311 ], [ -87.489912, 38.677609 ], [ -87.489474, 38.677872 ], [ -87.489098, 38.678064 ], [ -87.488952, 38.678123 ], [ -87.488611, 38.678263 ], [ -87.487757, 38.678537 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496558, 38.693356 ], [ -87.496313, 38.693483 ], [ -87.495395, 38.693924 ], [ -87.494493, 38.694356 ], [ -87.493845, 38.694668 ], [ -87.493637, 38.694768 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324279, 38.665042 ], [ -87.322648, 38.664236 ], [ -87.318258, 38.662122 ], [ -87.317899, 38.661955 ], [ -87.317322, 38.661687 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281284, 38.648383 ], [ -87.281833, 38.648788 ], [ -87.283018, 38.649661 ], [ -87.283039, 38.649677 ], [ -87.283098, 38.649712 ], [ -87.283963, 38.650229 ], [ -87.284415, 38.650446 ], [ -87.284506, 38.65049 ], [ -87.285316, 38.650824 ], [ -87.285369, 38.650841 ], [ -87.286376, 38.651161 ], [ -87.286917, 38.651287 ], [ -87.288771, 38.651638 ], [ -87.290255, 38.65192 ], [ -87.290439, 38.651955 ], [ -87.290791, 38.652022 ], [ -87.29099, 38.652065 ], [ -87.291174, 38.652105 ], [ -87.292011, 38.652287 ], [ -87.292103, 38.652314 ], [ -87.292906, 38.652553 ], [ -87.293392, 38.652729 ], [ -87.294282, 38.65311 ], [ -87.294759, 38.653354 ], [ -87.295095, 38.653527 ], [ -87.295578, 38.65384 ], [ -87.295741, 38.653945 ], [ -87.296167, 38.654222 ], [ -87.296227, 38.654269 ], [ -87.296381, 38.654389 ], [ -87.296456, 38.654447 ], [ -87.296681, 38.654622 ], [ -87.296756, 38.654681 ], [ -87.29715, 38.654988 ], [ -87.298333, 38.655911 ], [ -87.298728, 38.656219 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251603, 38.646362 ], [ -87.263235, 38.645577 ], [ -87.26543, 38.645452 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471113, 38.674656 ], [ -87.472966, 38.674781 ], [ -87.473898, 38.674845 ], [ -87.474559, 38.674913 ], [ -87.475316, 38.675016 ], [ -87.477432, 38.675445 ], [ -87.47846, 38.675672 ], [ -87.480275, 38.676074 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251756, 38.646594 ], [ -87.264972, 38.645702 ], [ -87.265562, 38.645689 ], [ -87.266057, 38.645677 ], [ -87.266338, 38.645671 ], [ -87.266637, 38.645677 ], [ -87.267099, 38.645685 ], [ -87.267543, 38.64571 ], [ -87.268038, 38.645739 ], [ -87.269408, 38.645816 ], [ -87.269556, 38.645825 ], [ -87.269878, 38.64582 ], [ -87.271724, 38.645938 ], [ -87.274892, 38.646433 ], [ -87.276102, 38.646629 ], [ -87.277635, 38.646882 ], [ -87.277708, 38.646897 ], [ -87.279585, 38.647185 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493314, 38.694923 ], [ -87.493265, 38.694947 ], [ -87.492823, 38.695159 ], [ -87.492303, 38.695409 ], [ -87.491137, 38.695968 ], [ -87.490204, 38.696416 ], [ -87.489938, 38.696543 ], [ -87.489139, 38.696927 ], [ -87.488874, 38.697055 ], [ -87.488414, 38.697275 ], [ -87.488053, 38.697449 ], [ -87.487548, 38.697701 ], [ -87.487086, 38.697976 ], [ -87.487065, 38.697989 ], [ -87.486671, 38.698255 ], [ -87.486644, 38.698275 ], [ -87.48606, 38.698715 ], [ -87.485949, 38.6988 ], [ -87.485527, 38.699184 ], [ -87.485126, 38.699597 ], [ -87.484827, 38.699954 ], [ -87.484578, 38.700319 ], [ -87.484282, 38.700756 ], [ -87.484184, 38.700935 ], [ -87.484097, 38.701092 ], [ -87.48403, 38.701215 ], [ -87.483878, 38.701584 ], [ -87.48381, 38.701751 ], [ -87.483733, 38.70194 ], [ -87.483717, 38.701997 ], [ -87.483514, 38.702731 ], [ -87.48351, 38.70276 ], [ -87.483481, 38.703022 ], [ -87.483436, 38.703407 ], [ -87.483415, 38.70359 ], [ -87.48342, 38.70457 ], [ -87.483435, 38.704957 ], [ -87.483468, 38.705802 ], [ -87.483567, 38.708337 ], [ -87.483601, 38.709182 ], [ -87.483606, 38.70933 ], [ -87.483624, 38.709774 ], [ -87.48363, 38.709923 ], [ -87.483653, 38.710531 ], [ -87.483722, 38.712355 ], [ -87.483744, 38.712918 ], [ -87.483747, 38.712963 ], [ -87.483748, 38.713008 ], [ -87.483776, 38.713733 ], [ -87.483866, 38.716045 ], [ -87.483896, 38.716816 ], [ -87.483901, 38.716947 ], [ -87.483916, 38.717343 ], [ -87.483921, 38.717475 ], [ -87.484018, 38.719989 ], [ -87.484057, 38.720981 ], [ -87.484064, 38.722291 ], [ -87.484038, 38.722676 ], [ -87.483989, 38.723176 ], [ -87.48394, 38.723685 ], [ -87.483433, 38.727158 ], [ -87.483383, 38.727493 ], [ -87.48302, 38.729984 ], [ -87.482968, 38.730349 ], [ -87.482811, 38.731445 ], [ -87.48276, 38.731811 ], [ -87.482724, 38.732048 ], [ -87.482616, 38.732759 ], [ -87.482581, 38.732997 ], [ -87.482577, 38.733019 ], [ -87.482568, 38.733085 ], [ -87.482566, 38.733108 ], [ -87.482556, 38.733181 ], [ -87.482525, 38.733403 ], [ -87.482516, 38.733477 ], [ -87.482507, 38.733542 ], [ -87.48243, 38.734012 ], [ -87.482387, 38.734282 ], [ -87.482217, 38.735101 ], [ -87.482086, 38.735602 ], [ -87.481949, 38.736128 ], [ -87.481946, 38.736138 ], [ -87.481857, 38.736412 ], [ -87.481704, 38.736892 ], [ -87.481568, 38.73726 ], [ -87.481466, 38.737541 ], [ -87.481458, 38.73756 ], [ -87.481435, 38.737618 ], [ -87.481428, 38.737638 ], [ -87.481316, 38.737925 ], [ -87.481223, 38.738167 ], [ -87.480976, 38.738787 ], [ -87.480863, 38.739075 ], [ -87.480847, 38.739115 ], [ -87.480821, 38.739175 ], [ -87.480696, 38.739474 ], [ -87.480681, 38.739512 ], [ -87.480657, 38.739575 ], [ -87.480507, 38.739958 ], [ -87.480096, 38.740965 ], [ -87.479425, 38.742642 ], [ -87.478786, 38.744242 ], [ -87.478365, 38.74531 ], [ -87.478009, 38.746181 ], [ -87.475812, 38.751678 ], [ -87.475743, 38.75185 ], [ -87.475162, 38.753318 ], [ -87.474818, 38.754165 ], [ -87.474516, 38.75492 ], [ -87.474172, 38.755781 ], [ -87.474132, 38.755876 ], [ -87.474035, 38.756114 ], [ -87.473944, 38.756354 ], [ -87.473778, 38.756743 ], [ -87.47333, 38.757886 ], [ -87.472978, 38.758745 ], [ -87.472959, 38.758793 ], [ -87.47272, 38.759393 ], [ -87.472596, 38.759703 ], [ -87.471864, 38.761535 ], [ -87.471792, 38.761716 ], [ -87.469651, 38.767025 ], [ -87.469244, 38.768036 ], [ -87.469038, 38.768579 ], [ -87.468921, 38.768859 ], [ -87.468866, 38.768974 ], [ -87.468619, 38.769625 ], [ -87.468579, 38.769733 ], [ -87.468077, 38.771108 ], [ -87.46762, 38.772385 ], [ -87.467563, 38.772547 ], [ -87.467296, 38.773267 ], [ -87.467215, 38.773485 ], [ -87.466869, 38.774439 ], [ -87.466796, 38.774642 ], [ -87.466559, 38.775312 ], [ -87.466109, 38.776532 ], [ -87.465645, 38.777924 ], [ -87.465403, 38.778803 ], [ -87.465328, 38.779077 ], [ -87.465125, 38.779898 ], [ -87.465055, 38.780224 ], [ -87.464968, 38.780624 ], [ -87.46482, 38.781498 ], [ -87.464756, 38.781916 ], [ -87.464258, 38.785225 ], [ -87.464077, 38.786348 ], [ -87.463973, 38.787011 ], [ -87.463885, 38.787581 ], [ -87.463767, 38.788393 ], [ -87.46371, 38.78871 ], [ -87.463673, 38.788915 ], [ -87.463603, 38.789306 ], [ -87.46355, 38.789529 ], [ -87.463503, 38.789733 ], [ -87.463489, 38.789792 ], [ -87.463369, 38.790163 ], [ -87.46324, 38.790605 ], [ -87.46306, 38.7911 ], [ -87.462875, 38.791551 ], [ -87.462673, 38.792005 ], [ -87.462474, 38.792429 ], [ -87.46228, 38.792803 ], [ -87.462265, 38.792833 ], [ -87.46206, 38.793204 ], [ -87.461569, 38.793987 ], [ -87.461218, 38.794502 ], [ -87.460251, 38.795792 ], [ -87.459597, 38.796677 ], [ -87.459129, 38.797299 ], [ -87.458471, 38.798196 ], [ -87.458246, 38.798511 ], [ -87.457374, 38.799655 ], [ -87.456475, 38.800859 ], [ -87.455868, 38.801674 ], [ -87.454485, 38.803507 ], [ -87.454261, 38.803801 ], [ -87.453787, 38.804438 ], [ -87.453705, 38.80455 ], [ -87.453017, 38.80546 ], [ -87.452507, 38.806152 ], [ -87.451693, 38.807231 ], [ -87.451185, 38.807906 ], [ -87.450995, 38.808162 ], [ -87.45015, 38.809304 ], [ -87.449384, 38.81032 ], [ -87.44898, 38.810847 ], [ -87.448804, 38.811079 ], [ -87.448426, 38.811601 ], [ -87.447994, 38.812225 ], [ -87.447602, 38.812835 ], [ -87.447409, 38.813169 ], [ -87.447164, 38.813609 ], [ -87.446918, 38.814063 ], [ -87.446673, 38.814548 ], [ -87.446521, 38.814861 ], [ -87.446432, 38.815071 ], [ -87.446269, 38.815423 ], [ -87.445989, 38.816147 ], [ -87.445693, 38.817046 ], [ -87.445515, 38.817681 ], [ -87.445352, 38.818332 ], [ -87.445205, 38.818886 ], [ -87.444934, 38.819964 ], [ -87.444567, 38.821433 ], [ -87.444296, 38.822491 ], [ -87.444174, 38.822992 ], [ -87.444113, 38.823219 ], [ -87.443991, 38.82368 ], [ -87.443658, 38.824999 ], [ -87.443139, 38.827065 ], [ -87.442906, 38.827969 ], [ -87.442623, 38.829121 ], [ -87.44231, 38.830345 ], [ -87.442005, 38.831542 ], [ -87.441894, 38.831943 ], [ -87.441848, 38.832124 ], [ -87.441765, 38.832447 ], [ -87.441627, 38.833012 ], [ -87.441349, 38.834098 ], [ -87.441153, 38.83487 ], [ -87.440691, 38.836726 ], [ -87.44019, 38.838688 ], [ -87.439926, 38.839743 ], [ -87.439855, 38.84002 ], [ -87.439353, 38.841993 ], [ -87.438614, 38.844924 ], [ -87.438078, 38.847053 ], [ -87.436966, 38.85142 ], [ -87.436771, 38.852169 ], [ -87.436676, 38.852582 ], [ -87.436386, 38.853713 ], [ -87.436226, 38.85434 ], [ -87.436079, 38.854935 ], [ -87.435859, 38.85579 ], [ -87.435648, 38.856645 ], [ -87.435301, 38.858026 ], [ -87.43511, 38.85875 ], [ -87.435048, 38.85899 ], [ -87.434291, 38.861968 ], [ -87.433823, 38.863857 ], [ -87.433508, 38.865069 ], [ -87.43337, 38.865605 ], [ -87.433138, 38.866653 ], [ -87.43305, 38.867147 ], [ -87.433038, 38.86719 ], [ -87.433037, 38.867236 ], [ -87.432967, 38.867852 ], [ -87.432951, 38.868242 ], [ -87.432944, 38.868435 ], [ -87.432961, 38.868971 ], [ -87.433012, 38.869466 ], [ -87.433125, 38.870143 ], [ -87.433251, 38.870644 ], [ -87.433425, 38.871199 ], [ -87.433482, 38.871346 ], [ -87.433644, 38.871763 ], [ -87.433906, 38.872314 ], [ -87.433986, 38.872465 ], [ -87.434154, 38.872781 ], [ -87.434237, 38.872916 ], [ -87.434328, 38.873063 ], [ -87.43453, 38.873371 ], [ -87.434561, 38.873419 ], [ -87.434794, 38.873747 ], [ -87.435087, 38.874126 ], [ -87.435252, 38.874327 ], [ -87.435344, 38.874428 ], [ -87.435633, 38.874742 ], [ -87.43596, 38.875077 ], [ -87.436028, 38.875146 ], [ -87.436952, 38.876073 ], [ -87.437283, 38.876405 ], [ -87.437346, 38.876469 ], [ -87.437477, 38.8766 ], [ -87.437538, 38.876662 ], [ -87.437602, 38.876727 ], [ -87.438442, 38.877584 ], [ -87.438463, 38.877606 ], [ -87.438932, 38.878103 ], [ -87.43928, 38.878505 ], [ -87.439556, 38.878841 ], [ -87.439837, 38.879204 ], [ -87.440264, 38.879815 ], [ -87.440546, 38.880243 ], [ -87.440713, 38.880525 ], [ -87.440839, 38.880739 ], [ -87.441117, 38.881246 ], [ -87.441294, 38.881611 ], [ -87.441343, 38.881713 ], [ -87.441357, 38.881741 ], [ -87.441477, 38.882025 ], [ -87.441522, 38.88213 ], [ -87.441648, 38.8824 ], [ -87.441793, 38.882775 ], [ -87.44192, 38.883148 ], [ -87.442033, 38.883514 ], [ -87.442172, 38.884024 ], [ -87.442202, 38.884131 ], [ -87.442341, 38.884761 ], [ -87.442439, 38.885364 ], [ -87.442495, 38.885775 ], [ -87.442528, 38.886213 ], [ -87.442559, 38.886733 ], [ -87.442555, 38.887282 ], [ -87.442534, 38.887849 ], [ -87.44246, 38.888651 ], [ -87.44239, 38.889095 ], [ -87.442289, 38.889621 ], [ -87.442204, 38.889982 ], [ -87.44216, 38.890171 ], [ -87.442024, 38.890671 ], [ -87.441864, 38.891166 ], [ -87.441585, 38.891889 ], [ -87.441116, 38.893082 ], [ -87.441033, 38.893284 ], [ -87.440815, 38.893818 ], [ -87.43937, 38.897467 ], [ -87.439152, 38.898019 ], [ -87.438838, 38.898807 ], [ -87.438816, 38.898862 ], [ -87.43855, 38.899534 ], [ -87.437756, 38.901552 ], [ -87.437504, 38.902194 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535472, 38.619951 ], [ -87.534734, 38.621626 ], [ -87.534315, 38.62258 ], [ -87.534109, 38.6231 ], [ -87.533531, 38.625033 ], [ -87.533245, 38.626612 ], [ -87.533222, 38.626877 ], [ -87.533206, 38.627065 ], [ -87.533251, 38.627604 ], [ -87.533507, 38.628675 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449051, 38.832091 ], [ -87.449047, 38.832253 ], [ -87.449046, 38.832277 ], [ -87.449044, 38.832676 ], [ -87.449052, 38.832835 ], [ -87.449057, 38.832922 ], [ -87.449056, 38.833021 ], [ -87.449052, 38.833037 ], [ -87.449007, 38.833227 ], [ -87.448978, 38.833408 ], [ -87.448949, 38.833519 ], [ -87.448946, 38.833534 ], [ -87.448932, 38.833631 ], [ -87.448929, 38.833719 ], [ -87.448917, 38.833836 ], [ -87.448837, 38.834286 ], [ -87.448821, 38.834414 ], [ -87.44871, 38.83509 ], [ -87.448697, 38.835172 ], [ -87.448637, 38.83561 ], [ -87.448616, 38.835773 ], [ -87.448591, 38.835934 ], [ -87.448449, 38.836878 ], [ -87.448444, 38.836904 ], [ -87.448408, 38.837113 ], [ -87.448389, 38.837227 ], [ -87.44828, 38.837933 ], [ -87.448188, 38.838494 ], [ -87.448085, 38.839206 ], [ -87.448007, 38.839693 ], [ -87.447952, 38.84011 ], [ -87.44786, 38.840663 ], [ -87.447802, 38.841068 ], [ -87.447774, 38.84127 ], [ -87.447667, 38.84191 ], [ -87.447573, 38.842595 ], [ -87.447472, 38.843225 ], [ -87.447385, 38.843862 ], [ -87.447305, 38.844342 ], [ -87.447284, 38.844526 ], [ -87.447226, 38.844912 ], [ -87.447201, 38.845024 ], [ -87.446951, 38.846679 ], [ -87.446906, 38.847071 ], [ -87.446822, 38.847498 ], [ -87.446736, 38.84788 ], [ -87.446638, 38.848137 ], [ -87.446572, 38.848332 ], [ -87.446475, 38.848557 ], [ -87.446273, 38.848929 ], [ -87.445655, 38.849941 ], [ -87.445458, 38.850279 ], [ -87.44492, 38.851169 ], [ -87.444454, 38.851953 ], [ -87.444426, 38.852033 ], [ -87.444404, 38.852102 ], [ -87.444351, 38.852339 ], [ -87.444339, 38.852515 ], [ -87.44436, 38.852707 ], [ -87.444435, 38.852936 ], [ -87.444525, 38.853126 ], [ -87.44461, 38.853264 ], [ -87.444761, 38.853439 ], [ -87.445058, 38.85368 ], [ -87.445679, 38.854067 ], [ -87.446124, 38.854326 ], [ -87.446547, 38.854587 ], [ -87.446747, 38.854704 ], [ -87.446822, 38.854748 ], [ -87.447212, 38.854979 ], [ -87.447531, 38.855167 ], [ -87.447793, 38.855359 ], [ -87.447969, 38.855517 ], [ -87.448086, 38.855648 ], [ -87.448157, 38.855749 ], [ -87.448223, 38.855856 ], [ -87.448308, 38.856109 ], [ -87.448318, 38.856139 ], [ -87.448351, 38.856363 ], [ -87.44835, 38.856647 ], [ -87.448347, 38.85687 ], [ -87.44832, 38.85719 ], [ -87.448318, 38.857215 ], [ -87.448307, 38.857523 ], [ -87.448276, 38.857926 ], [ -87.448263, 38.858226 ], [ -87.448214, 38.858921 ], [ -87.448202, 38.85911 ], [ -87.448184, 38.859491 ], [ -87.448182, 38.85954 ], [ -87.448149, 38.859899 ], [ -87.448124, 38.860358 ], [ -87.448116, 38.860473 ], [ -87.44806, 38.861331 ], [ -87.448025, 38.861803 ], [ -87.447955, 38.862984 ], [ -87.447945, 38.863073 ], [ -87.447906, 38.86325 ], [ -87.447877, 38.863415 ], [ -87.447848, 38.863583 ], [ -87.447735, 38.863996 ], [ -87.44768, 38.864155 ], [ -87.447632, 38.864312 ], [ -87.447622, 38.864338 ], [ -87.44761, 38.864362 ] ] } } diff --git a/tests/knox/out/-zg.json b/tests/knox/out/-zg.json new file mode 100644 index 0000000..c5185c4 --- /dev/null +++ b/tests/knox/out/-zg.json @@ -0,0 +1,1144 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-87.564090,38.490831,-87.251603,38.902199", +"center": "-87.363281,38.685378,10", +"description": "tests/knox/out/-zg.json.check.mbtiles", +"format": "pbf", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 10, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} } ] }", +"maxzoom": "10", +"minzoom": "0", +"name": "tests/knox/out/-zg.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.822591 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 38.548165 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 38.548165 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.822591 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 38.548165 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 38.548165 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.788345 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.856820 ], [ -87.451172, 38.891033 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.513788 ], [ -87.539062, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.513788 ], [ -87.539062, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.539062, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.788345 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.513788 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.513788 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.319336, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.319336, 38.651198 ], [ -87.319336, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.319336, 38.651198 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.771216 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.839708 ], [ -87.451172, 38.873929 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.496594 ], [ -87.539062, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.496594 ], [ -87.539062, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.517090, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.771216 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.702659 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.702659 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.668356 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.496594 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.496594 ], [ -87.517090, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.319336, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.297363, 38.651198 ], [ -87.319336, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.297363, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.762650 ], [ -87.440186, 38.873929 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.839708 ], [ -87.451172, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.572021, 38.496594 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.572021, 38.496594 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.831150 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.831150 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.831150 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.831150 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.528076, 38.711233 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.528076, 38.711233 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.506104, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.762650 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.506104, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.506104, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.668356 ], [ -87.495117, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.625454 ], [ -87.539062, 38.634036 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.495117, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.495117, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.484131, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.676933 ], [ -87.484131, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.572021, 38.496594 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.651198 ], [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.572021, 38.496594 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.616870 ], [ -87.517090, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.676933 ], [ -87.484131, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.341309, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.330322, 38.668356 ], [ -87.319336, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.286377, 38.651198 ], [ -87.308350, 38.659778 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.286377, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.762650 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.835429 ], [ -87.451172, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.484131, 38.702659 ], [ -87.484131, 38.741231 ], [ -87.445679, 38.822591 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.484131, 38.706946 ], [ -87.484131, 38.741231 ], [ -87.467651, 38.796908 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.484131, 38.706946 ], [ -87.484131, 38.741231 ], [ -87.467651, 38.796908 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.484131, 38.706946 ], [ -87.484131, 38.741231 ], [ -87.467651, 38.796908 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.522583, 38.711233 ], [ -87.506104, 38.706946 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.522583, 38.711233 ], [ -87.506104, 38.706946 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.500610, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.478638, 38.758367 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.500610, 38.694085 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.500610, 38.694085 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.689798 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.689798 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.511597, 38.664067 ], [ -87.495117, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.621162 ], [ -87.533569, 38.629745 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672645 ], [ -87.495117, 38.689798 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.489624, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.495117, 38.689798 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.681222 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.484131, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.676933 ], [ -87.484131, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.612578 ], [ -87.533569, 38.651198 ], [ -87.495117, 38.681222 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.612578 ], [ -87.533569, 38.651198 ], [ -87.511597, 38.664067 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.681222 ], [ -87.456665, 38.676933 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.681222 ], [ -87.456665, 38.676933 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.672645 ], [ -87.412720, 38.681222 ], [ -87.484131, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.672645 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.668356 ], [ -87.319336, 38.664067 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.335815, 38.672645 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.335815, 38.672645 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.286377, 38.651198 ], [ -87.302856, 38.659778 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.280884, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.269897, 38.646908 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.760509 ], [ -87.464905, 38.794768 ], [ -87.448425, 38.818311 ], [ -87.434692, 38.867513 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.833289 ], [ -87.445679, 38.854681 ], [ -87.448425, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.528830 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.528830 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.484131, 38.702659 ], [ -87.484131, 38.736946 ], [ -87.464905, 38.792627 ], [ -87.445679, 38.820451 ], [ -87.434692, 38.869652 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.484131, 38.704803 ], [ -87.484131, 38.736946 ], [ -87.464905, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.484131, 38.704803 ], [ -87.484131, 38.736946 ], [ -87.464905, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.484131, 38.704803 ], [ -87.484131, 38.736946 ], [ -87.464905, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.709089 ], [ -87.503357, 38.706946 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.709089 ], [ -87.503357, 38.706946 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.497864, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.475891, 38.756225 ], [ -87.484131, 38.734804 ], [ -87.484131, 38.702659 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.687654 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.687654 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.489624, 38.681222 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.511597, 38.661922 ], [ -87.492371, 38.674789 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.536316, 38.621162 ], [ -87.533569, 38.629745 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672645 ], [ -87.492371, 38.679078 ], [ -87.492371, 38.689798 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.489624, 38.681222 ], [ -87.489624, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.492371, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.679078 ], [ -87.492371, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.674789 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.674789 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.481384, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.674789 ], [ -87.481384, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.528830 ], [ -87.539062, 38.610432 ], [ -87.530823, 38.646908 ], [ -87.492371, 38.676933 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.612578 ], [ -87.530823, 38.649053 ], [ -87.511597, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.679078 ], [ -87.456665, 38.674789 ], [ -87.409973, 38.681222 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.679078 ], [ -87.456665, 38.674789 ], [ -87.409973, 38.681222 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.670501 ], [ -87.409973, 38.681222 ], [ -87.456665, 38.674789 ], [ -87.484131, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.456665, 38.674789 ], [ -87.409973, 38.681222 ], [ -87.335815, 38.670501 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.666212 ], [ -87.319336, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.294617, 38.651198 ], [ -87.335815, 38.670501 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.294617, 38.651198 ], [ -87.335815, 38.670501 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.291870, 38.651198 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.291870, 38.651198 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.283630, 38.649053 ], [ -87.300110, 38.657633 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.280884, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.267151, 38.646908 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.760509 ], [ -87.463531, 38.792627 ], [ -87.447052, 38.817241 ], [ -87.434692, 38.867513 ], [ -87.434692, 38.872859 ], [ -87.442932, 38.885688 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449799, 38.832220 ], [ -87.445679, 38.853612 ], [ -87.448425, 38.856820 ], [ -87.448425, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.565155, 38.491219 ], [ -87.561035, 38.512714 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.527756 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624381 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.565155, 38.491219 ], [ -87.559662, 38.512714 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.625454 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.484131, 38.702659 ], [ -87.482758, 38.735875 ], [ -87.467651, 38.777640 ], [ -87.463531, 38.791557 ], [ -87.447052, 38.818311 ], [ -87.433319, 38.868583 ], [ -87.434692, 38.872859 ], [ -87.442932, 38.885688 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.484131, 38.702659 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.776570 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.818311 ], [ -87.433319, 38.868583 ], [ -87.442932, 38.886757 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.484131, 38.702659 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.776570 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.818311 ], [ -87.433319, 38.868583 ], [ -87.442932, 38.886757 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.484131, 38.702659 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.776570 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.818311 ], [ -87.433319, 38.868583 ], [ -87.442932, 38.886757 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.708018 ], [ -87.507477, 38.708018 ], [ -87.501984, 38.705874 ], [ -87.496490, 38.701588 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.708018 ], [ -87.508850, 38.708018 ], [ -87.501984, 38.705874 ], [ -87.497864, 38.701588 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.497864, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.475891, 38.755154 ], [ -87.482758, 38.734804 ], [ -87.484131, 38.702659 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.693013 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.488251, 38.681222 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.510223, 38.661922 ], [ -87.492371, 38.674789 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.536316, 38.620089 ], [ -87.533569, 38.629745 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672645 ], [ -87.490997, 38.679078 ], [ -87.492371, 38.689798 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.488251, 38.680150 ], [ -87.489624, 38.684438 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.486877, 38.681222 ], [ -87.490997, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.679078 ], [ -87.490997, 38.684438 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.674789 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.674789 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.486877, 38.676933 ], [ -87.481384, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471771, 38.674789 ], [ -87.481384, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.565155, 38.491219 ], [ -87.561035, 38.512714 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.527756 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645836 ], [ -87.526703, 38.651198 ], [ -87.493744, 38.674789 ], [ -87.490997, 38.679078 ], [ -87.490997, 38.685510 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.565155, 38.491219 ], [ -87.559662, 38.512714 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.611505 ], [ -87.533569, 38.625454 ], [ -87.529449, 38.647981 ], [ -87.510223, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.679078 ], [ -87.475891, 38.675861 ], [ -87.458038, 38.674789 ], [ -87.429199, 38.675861 ], [ -87.409973, 38.680150 ], [ -87.370148, 38.675861 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.679078 ], [ -87.475891, 38.675861 ], [ -87.458038, 38.674789 ], [ -87.429199, 38.675861 ], [ -87.409973, 38.680150 ], [ -87.370148, 38.675861 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.669428 ], [ -87.371521, 38.675861 ], [ -87.409973, 38.680150 ], [ -87.427826, 38.675861 ], [ -87.455292, 38.674789 ], [ -87.474518, 38.675861 ], [ -87.482758, 38.678006 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.474518, 38.675861 ], [ -87.455292, 38.674789 ], [ -87.427826, 38.675861 ], [ -87.409973, 38.680150 ], [ -87.371521, 38.675861 ], [ -87.335815, 38.669428 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.665139 ], [ -87.317963, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.294617, 38.651198 ], [ -87.326202, 38.666212 ], [ -87.335815, 38.669428 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.294617, 38.651198 ], [ -87.326202, 38.666212 ], [ -87.335815, 38.669428 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.666212 ], [ -87.291870, 38.650126 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.666212 ], [ -87.291870, 38.650126 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.282257, 38.649053 ], [ -87.298737, 38.656561 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.267151, 38.645836 ], [ -87.280884, 38.647981 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.252045, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.252045, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.265778, 38.645836 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 49 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.759973 ], [ -87.466278, 38.778711 ], [ -87.463531, 38.792627 ], [ -87.447739, 38.814031 ], [ -87.444992, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.447052, 38.848264 ], [ -87.444992, 38.853077 ], [ -87.448425, 38.856285 ], [ -87.447739, 38.864840 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564468, 38.491219 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541809, 38.522384 ], [ -87.538376, 38.527219 ], [ -87.539062, 38.609896 ], [ -87.533569, 38.624381 ], [ -87.530136, 38.644763 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564468, 38.491219 ], [ -87.561722, 38.508953 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541809, 38.521847 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624918 ], [ -87.529449, 38.644763 ], [ -87.528076, 38.648517 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.701588 ], [ -87.484818, 38.723019 ], [ -87.482071, 38.736946 ], [ -87.466965, 38.777105 ], [ -87.463531, 38.792627 ], [ -87.447739, 38.814031 ], [ -87.444992, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.702123 ], [ -87.484131, 38.722483 ], [ -87.482071, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.792092 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.702123 ], [ -87.484131, 38.722483 ], [ -87.482071, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.792092 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.702123 ], [ -87.484131, 38.722483 ], [ -87.482071, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.792092 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.707482 ], [ -87.509537, 38.708018 ], [ -87.502670, 38.706410 ], [ -87.497177, 38.702123 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.707482 ], [ -87.509537, 38.708018 ], [ -87.502670, 38.706410 ], [ -87.497177, 38.701588 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.497177, 38.693549 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.475204, 38.755154 ], [ -87.482758, 38.734804 ], [ -87.484818, 38.723019 ], [ -87.484131, 38.702123 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497177, 38.693549 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497177, 38.693549 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.693013 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.490997, 38.687118 ], [ -87.490311, 38.681758 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.487564, 38.681222 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509537, 38.661922 ], [ -87.492371, 38.674789 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535629, 38.620089 ], [ -87.533569, 38.625454 ], [ -87.533569, 38.629209 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672645 ], [ -87.493057, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.491684, 38.689262 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.489624, 38.676397 ], [ -87.488251, 38.679078 ], [ -87.489624, 38.684438 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.486877, 38.680686 ], [ -87.490997, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.678542 ], [ -87.490311, 38.681222 ], [ -87.490311, 38.683902 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.674789 ], [ -87.490997, 38.677469 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.674789 ], [ -87.490997, 38.677469 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.486877, 38.676933 ], [ -87.480698, 38.676397 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471771, 38.674789 ], [ -87.480698, 38.676397 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564468, 38.491219 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541809, 38.522384 ], [ -87.538376, 38.527219 ], [ -87.539062, 38.609896 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645836 ], [ -87.526016, 38.650662 ], [ -87.493057, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.490311, 38.685510 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564468, 38.491219 ], [ -87.561722, 38.508953 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541809, 38.521847 ], [ -87.538376, 38.526144 ], [ -87.539062, 38.610969 ], [ -87.533569, 38.624918 ], [ -87.528763, 38.647445 ], [ -87.526016, 38.650126 ], [ -87.509537, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.678542 ], [ -87.485504, 38.677469 ], [ -87.475891, 38.675325 ], [ -87.457352, 38.674253 ], [ -87.428513, 38.675861 ], [ -87.412720, 38.680150 ], [ -87.409286, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.678542 ], [ -87.485504, 38.677469 ], [ -87.475891, 38.675325 ], [ -87.457352, 38.674253 ], [ -87.428513, 38.675861 ], [ -87.412720, 38.680150 ], [ -87.409286, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668892 ], [ -87.371521, 38.675861 ], [ -87.409286, 38.680150 ], [ -87.412720, 38.680150 ], [ -87.427826, 38.675861 ], [ -87.455292, 38.674253 ], [ -87.473831, 38.675325 ], [ -87.482071, 38.678006 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.473831, 38.675325 ], [ -87.455292, 38.674253 ], [ -87.427826, 38.675861 ], [ -87.412720, 38.680150 ], [ -87.409286, 38.680150 ], [ -87.371521, 38.675861 ], [ -87.335129, 38.668892 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.665139 ], [ -87.317963, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.286377, 38.648517 ], [ -87.293930, 38.651198 ], [ -87.325516, 38.666212 ], [ -87.335129, 38.668892 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.286377, 38.648517 ], [ -87.293930, 38.651198 ], [ -87.325516, 38.666212 ], [ -87.335129, 38.668892 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.665675 ], [ -87.291183, 38.649590 ], [ -87.275391, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.665675 ], [ -87.291183, 38.649590 ], [ -87.275391, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281570, 38.648517 ], [ -87.285690, 38.651198 ], [ -87.294617, 38.653343 ], [ -87.298737, 38.656561 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.267151, 38.645836 ], [ -87.280197, 38.647445 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.266464, 38.645836 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.266464, 38.645836 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646372 ], [ -87.265778, 38.645836 ], [ -87.252045, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646372 ], [ -87.265778, 38.645836 ], [ -87.252045, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646372 ], [ -87.265778, 38.645836 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 48 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.463531, 38.792627 ], [ -87.447739, 38.814031 ], [ -87.444992, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434692, 38.872325 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.885688 ], [ -87.442932, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.447052, 38.848264 ], [ -87.444992, 38.853077 ], [ -87.448425, 38.856285 ], [ -87.447739, 38.864840 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.463531, 38.792627 ], [ -87.447739, 38.814031 ], [ -87.444992, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434692, 38.872325 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.885688 ], [ -87.442932, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.462845, 38.792627 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434006, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.886223 ], [ -87.442245, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.462845, 38.792627 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434006, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.886223 ], [ -87.442245, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.462845, 38.792627 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434006, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.886223 ], [ -87.442245, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 65, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.759706 ], [ -87.465935, 38.778443 ], [ -87.464218, 38.789148 ], [ -87.463188, 38.792359 ], [ -87.447395, 38.814031 ], [ -87.444649, 38.822591 ], [ -87.439499, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.447395, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.524264 ], [ -87.538376, 38.526950 ], [ -87.539062, 38.609627 ], [ -87.533569, 38.624381 ], [ -87.529793, 38.644763 ], [ -87.527733, 38.648785 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508684 ], [ -87.560005, 38.511639 ], [ -87.558289, 38.513520 ], [ -87.555885, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538033, 38.526682 ], [ -87.539062, 38.610164 ], [ -87.533226, 38.624649 ], [ -87.529449, 38.644495 ], [ -87.527733, 38.648517 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.701588 ], [ -87.483788, 38.703999 ], [ -87.484474, 38.722751 ], [ -87.482071, 38.736946 ], [ -87.466621, 38.777105 ], [ -87.463188, 38.792359 ], [ -87.447395, 38.814031 ], [ -87.444649, 38.822591 ], [ -87.439499, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.485161, 38.699980 ], [ -87.483788, 38.702123 ], [ -87.483444, 38.704803 ], [ -87.484131, 38.722483 ], [ -87.481728, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.463188, 38.791557 ], [ -87.461472, 38.794768 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.439156, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.485161, 38.699980 ], [ -87.483788, 38.702123 ], [ -87.483444, 38.704803 ], [ -87.484131, 38.722483 ], [ -87.481728, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.463188, 38.791557 ], [ -87.461472, 38.794768 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.439156, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.485161, 38.699980 ], [ -87.483788, 38.702123 ], [ -87.483444, 38.704803 ], [ -87.484131, 38.722483 ], [ -87.481728, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.463188, 38.791557 ], [ -87.461472, 38.794768 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.439156, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519493, 38.707482 ], [ -87.509193, 38.708018 ], [ -87.505760, 38.707482 ], [ -87.502327, 38.706410 ], [ -87.498894, 38.704267 ], [ -87.496834, 38.702123 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519493, 38.707214 ], [ -87.509193, 38.707750 ], [ -87.505417, 38.707214 ], [ -87.502327, 38.706142 ], [ -87.499237, 38.704267 ], [ -87.496834, 38.701588 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497177, 38.693281 ], [ -87.496834, 38.693549 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.497177, 38.693281 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.755154 ], [ -87.482758, 38.734804 ], [ -87.484474, 38.722751 ], [ -87.484131, 38.702123 ], [ -87.485161, 38.699980 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496834, 38.693549 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496834, 38.693549 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.692745 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.490654, 38.686850 ], [ -87.489967, 38.681490 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.485504, 38.679346 ], [ -87.487221, 38.680954 ], [ -87.489967, 38.686314 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509537, 38.661922 ], [ -87.492027, 38.674521 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535629, 38.620089 ], [ -87.533569, 38.625186 ], [ -87.533569, 38.628941 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672377 ], [ -87.492714, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.490311, 38.685510 ], [ -87.491684, 38.689262 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492027, 38.674521 ], [ -87.489281, 38.676397 ], [ -87.487907, 38.679078 ], [ -87.487907, 38.681222 ], [ -87.489281, 38.684170 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.484474, 38.678810 ], [ -87.486877, 38.680418 ], [ -87.490654, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.489967, 38.680954 ], [ -87.490311, 38.683902 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.484818, 38.678810 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.484818, 38.678810 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492714, 38.674789 ], [ -87.490654, 38.677469 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492714, 38.674789 ], [ -87.490654, 38.677469 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492027, 38.674521 ], [ -87.488937, 38.676129 ], [ -87.486877, 38.676933 ], [ -87.484131, 38.676933 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471428, 38.674789 ], [ -87.475548, 38.675057 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.524264 ], [ -87.538376, 38.526950 ], [ -87.539062, 38.609627 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645568 ], [ -87.528076, 38.648249 ], [ -87.526016, 38.650662 ], [ -87.503357, 38.666212 ], [ -87.492714, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.490311, 38.684974 ], [ -87.490997, 38.687386 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508684 ], [ -87.560005, 38.511639 ], [ -87.558289, 38.513520 ], [ -87.555885, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538376, 38.525876 ], [ -87.538719, 38.610969 ], [ -87.533226, 38.624649 ], [ -87.529449, 38.644495 ], [ -87.528419, 38.647176 ], [ -87.526016, 38.650126 ], [ -87.509537, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485504, 38.677201 ], [ -87.475548, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.412720, 38.679882 ], [ -87.408943, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335472, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485504, 38.677201 ], [ -87.475548, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.412720, 38.679882 ], [ -87.408943, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335472, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668624 ], [ -87.371178, 38.675861 ], [ -87.409286, 38.680150 ], [ -87.412720, 38.679882 ], [ -87.427826, 38.675861 ], [ -87.455292, 38.674253 ], [ -87.473488, 38.675057 ], [ -87.476921, 38.675861 ], [ -87.481728, 38.677738 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.476921, 38.675861 ], [ -87.473488, 38.675057 ], [ -87.455292, 38.674253 ], [ -87.427826, 38.675861 ], [ -87.412720, 38.679882 ], [ -87.409286, 38.680150 ], [ -87.371178, 38.675861 ], [ -87.335129, 38.668624 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324486, 38.665139 ], [ -87.317619, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646640 ], [ -87.286034, 38.648517 ], [ -87.293587, 38.650930 ], [ -87.325516, 38.665944 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668624 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646640 ], [ -87.286034, 38.648517 ], [ -87.293587, 38.650930 ], [ -87.325516, 38.665944 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668624 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335472, 38.668356 ], [ -87.326546, 38.665944 ], [ -87.295303, 38.651466 ], [ -87.290840, 38.649590 ], [ -87.282257, 38.647445 ], [ -87.275047, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335472, 38.668356 ], [ -87.326546, 38.665944 ], [ -87.295303, 38.651466 ], [ -87.290840, 38.649590 ], [ -87.282257, 38.647445 ], [ -87.275047, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281570, 38.648517 ], [ -87.285347, 38.650930 ], [ -87.294617, 38.653343 ], [ -87.298737, 38.656292 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646640 ], [ -87.267151, 38.645836 ], [ -87.271957, 38.646104 ], [ -87.279854, 38.647445 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646640 ], [ -87.266464, 38.645836 ], [ -87.275047, 38.646640 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646640 ], [ -87.266464, 38.645836 ], [ -87.275047, 38.646640 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646372 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646372 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646372 ], [ -87.265434, 38.645568 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 65, "y": 97 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456665, 38.801189 ], [ -87.447395, 38.814031 ], [ -87.444649, 38.822591 ], [ -87.433319, 38.867781 ], [ -87.433662, 38.870186 ], [ -87.434692, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.885688 ], [ -87.442589, 38.890766 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.447052, 38.847997 ], [ -87.444649, 38.852542 ], [ -87.444992, 38.853612 ], [ -87.448425, 38.856285 ], [ -87.447739, 38.864573 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456665, 38.801189 ], [ -87.447395, 38.814031 ], [ -87.444649, 38.822591 ], [ -87.433319, 38.867781 ], [ -87.433662, 38.870186 ], [ -87.434692, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.885688 ], [ -87.442589, 38.890766 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456322, 38.801189 ], [ -87.447739, 38.813229 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.868048 ], [ -87.434006, 38.872592 ], [ -87.440872, 38.880343 ], [ -87.442589, 38.885955 ], [ -87.442245, 38.890766 ], [ -87.437782, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456322, 38.801189 ], [ -87.447739, 38.813229 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.868048 ], [ -87.434006, 38.872592 ], [ -87.440872, 38.880343 ], [ -87.442589, 38.885955 ], [ -87.442245, 38.890766 ], [ -87.437782, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456322, 38.801189 ], [ -87.447739, 38.813229 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.868048 ], [ -87.434006, 38.872592 ], [ -87.440872, 38.880343 ], [ -87.442589, 38.885955 ], [ -87.442245, 38.890766 ], [ -87.437782, 38.902255 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 131, "y": 196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.759572 ], [ -87.469368, 38.768941 ], [ -87.465935, 38.778309 ], [ -87.464046, 38.789014 ], [ -87.463017, 38.792226 ], [ -87.461472, 38.794901 ], [ -87.449112, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446194, 38.816974 ], [ -87.444649, 38.822591 ], [ -87.441902, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.449112, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.561207, 38.509624 ], [ -87.560177, 38.511639 ], [ -87.558117, 38.513788 ], [ -87.556057, 38.515266 ], [ -87.542839, 38.521310 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.524130 ], [ -87.538376, 38.526816 ], [ -87.539062, 38.609627 ], [ -87.538548, 38.612042 ], [ -87.533569, 38.624247 ], [ -87.529793, 38.644629 ], [ -87.529106, 38.646506 ], [ -87.527733, 38.648651 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508550 ], [ -87.559834, 38.511505 ], [ -87.558289, 38.513385 ], [ -87.555714, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538548, 38.525204 ], [ -87.538033, 38.526547 ], [ -87.538891, 38.610030 ], [ -87.538376, 38.612042 ], [ -87.533913, 38.622101 ], [ -87.533226, 38.624515 ], [ -87.529449, 38.644495 ], [ -87.528934, 38.646238 ], [ -87.527561, 38.648383 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.486877, 38.698372 ], [ -87.485161, 38.699980 ], [ -87.484131, 38.701588 ], [ -87.483788, 38.703865 ], [ -87.484303, 38.722751 ], [ -87.482758, 38.734000 ], [ -87.482071, 38.736946 ], [ -87.469368, 38.768941 ], [ -87.466450, 38.776971 ], [ -87.465420, 38.780718 ], [ -87.463875, 38.789683 ], [ -87.463017, 38.792226 ], [ -87.461472, 38.794901 ], [ -87.449112, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446194, 38.816974 ], [ -87.444649, 38.822591 ], [ -87.441902, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695023 ], [ -87.486706, 38.698372 ], [ -87.484989, 38.699980 ], [ -87.483788, 38.701989 ], [ -87.483444, 38.704669 ], [ -87.484131, 38.722349 ], [ -87.482414, 38.734402 ], [ -87.481728, 38.736946 ], [ -87.469025, 38.769075 ], [ -87.466278, 38.776570 ], [ -87.465076, 38.780718 ], [ -87.463703, 38.789416 ], [ -87.463017, 38.791557 ], [ -87.461300, 38.794634 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.441559, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695023 ], [ -87.486706, 38.698372 ], [ -87.484989, 38.699980 ], [ -87.483788, 38.701989 ], [ -87.483444, 38.704669 ], [ -87.484131, 38.722349 ], [ -87.482414, 38.734402 ], [ -87.481728, 38.736946 ], [ -87.469025, 38.769075 ], [ -87.466278, 38.776570 ], [ -87.465076, 38.780718 ], [ -87.463703, 38.789416 ], [ -87.463017, 38.791557 ], [ -87.461300, 38.794634 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.441559, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695023 ], [ -87.486706, 38.698372 ], [ -87.484989, 38.699980 ], [ -87.483788, 38.701989 ], [ -87.483444, 38.704669 ], [ -87.484131, 38.722349 ], [ -87.482414, 38.734402 ], [ -87.481728, 38.736946 ], [ -87.469025, 38.769075 ], [ -87.466278, 38.776570 ], [ -87.465076, 38.780718 ], [ -87.463703, 38.789416 ], [ -87.463017, 38.791557 ], [ -87.461300, 38.794634 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.441559, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519321, 38.707482 ], [ -87.509193, 38.707884 ], [ -87.505760, 38.707482 ], [ -87.502327, 38.706410 ], [ -87.498894, 38.704267 ], [ -87.496662, 38.702123 ], [ -87.495289, 38.699712 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519321, 38.707214 ], [ -87.509193, 38.707750 ], [ -87.505417, 38.707214 ], [ -87.502155, 38.706008 ], [ -87.499237, 38.704267 ], [ -87.496662, 38.701588 ], [ -87.495632, 38.699712 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497005, 38.693281 ], [ -87.496662, 38.693415 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.497005, 38.693281 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.755020 ], [ -87.481899, 38.737749 ], [ -87.482758, 38.734670 ], [ -87.484303, 38.722751 ], [ -87.483788, 38.703865 ], [ -87.483959, 38.701989 ], [ -87.485161, 38.699980 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496662, 38.693415 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496662, 38.693415 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492886, 38.692745 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.490654, 38.686850 ], [ -87.489967, 38.681356 ], [ -87.489109, 38.679882 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.485332, 38.679212 ], [ -87.487221, 38.680954 ], [ -87.489967, 38.686180 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509365, 38.661788 ], [ -87.503529, 38.665675 ], [ -87.491856, 38.674387 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535629, 38.619955 ], [ -87.533569, 38.625052 ], [ -87.533226, 38.627197 ], [ -87.533569, 38.628807 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672377 ], [ -87.492542, 38.674655 ], [ -87.490654, 38.677604 ], [ -87.490311, 38.678944 ], [ -87.490311, 38.685510 ], [ -87.491512, 38.689262 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674387 ], [ -87.489109, 38.676397 ], [ -87.488251, 38.677604 ], [ -87.487736, 38.678944 ], [ -87.487736, 38.681222 ], [ -87.489109, 38.684170 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.484474, 38.678676 ], [ -87.486706, 38.680418 ], [ -87.489281, 38.684840 ], [ -87.490654, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.489109, 38.679882 ], [ -87.489796, 38.680954 ], [ -87.490311, 38.683768 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.484818, 38.678676 ], [ -87.486191, 38.678810 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.484818, 38.678676 ], [ -87.486191, 38.678810 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492542, 38.674655 ], [ -87.490482, 38.677335 ], [ -87.489109, 38.678140 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492542, 38.674655 ], [ -87.490482, 38.677335 ], [ -87.489109, 38.678140 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674387 ], [ -87.488937, 38.676129 ], [ -87.486706, 38.676799 ], [ -87.484131, 38.676799 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471256, 38.674789 ], [ -87.475376, 38.675057 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.561207, 38.509624 ], [ -87.560177, 38.511639 ], [ -87.558117, 38.513788 ], [ -87.556057, 38.515266 ], [ -87.542839, 38.521310 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.524130 ], [ -87.538376, 38.526816 ], [ -87.539062, 38.609627 ], [ -87.538548, 38.612042 ], [ -87.533569, 38.624247 ], [ -87.529449, 38.645568 ], [ -87.528076, 38.648115 ], [ -87.525845, 38.650528 ], [ -87.516575, 38.657231 ], [ -87.503357, 38.666078 ], [ -87.493744, 38.673315 ], [ -87.492542, 38.674655 ], [ -87.490654, 38.677604 ], [ -87.490311, 38.678944 ], [ -87.490311, 38.684974 ], [ -87.490826, 38.687386 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508550 ], [ -87.559834, 38.511505 ], [ -87.558289, 38.513385 ], [ -87.555714, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538204, 38.525876 ], [ -87.538033, 38.529367 ], [ -87.538891, 38.600103 ], [ -87.538891, 38.609225 ], [ -87.538548, 38.610969 ], [ -87.533913, 38.622101 ], [ -87.533226, 38.624515 ], [ -87.529449, 38.644495 ], [ -87.528419, 38.647176 ], [ -87.527390, 38.648785 ], [ -87.526016, 38.649992 ], [ -87.516918, 38.656695 ], [ -87.509537, 38.661788 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485332, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.425251, 38.676129 ], [ -87.412720, 38.679748 ], [ -87.408943, 38.680016 ], [ -87.395897, 38.678274 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675191 ], [ -87.335300, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485332, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.425251, 38.676129 ], [ -87.412720, 38.679748 ], [ -87.408943, 38.680016 ], [ -87.395897, 38.678274 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675191 ], [ -87.335300, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668490 ], [ -87.371178, 38.675727 ], [ -87.395897, 38.678408 ], [ -87.409286, 38.680150 ], [ -87.412720, 38.679882 ], [ -87.425079, 38.676397 ], [ -87.427654, 38.675861 ], [ -87.455292, 38.674253 ], [ -87.460957, 38.674253 ], [ -87.473316, 38.675057 ], [ -87.476749, 38.675861 ], [ -87.481556, 38.677604 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.476749, 38.675861 ], [ -87.473316, 38.675057 ], [ -87.460957, 38.674253 ], [ -87.455292, 38.674253 ], [ -87.427654, 38.675861 ], [ -87.425079, 38.676397 ], [ -87.412720, 38.679882 ], [ -87.409286, 38.680150 ], [ -87.395897, 38.678408 ], [ -87.371178, 38.675727 ], [ -87.335129, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324314, 38.665139 ], [ -87.317448, 38.661788 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646506 ], [ -87.285862, 38.648383 ], [ -87.289467, 38.649456 ], [ -87.293415, 38.650796 ], [ -87.325516, 38.665810 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646506 ], [ -87.285862, 38.648383 ], [ -87.289467, 38.649456 ], [ -87.293415, 38.650796 ], [ -87.325516, 38.665810 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668356 ], [ -87.329121, 38.667016 ], [ -87.326374, 38.665944 ], [ -87.295303, 38.651332 ], [ -87.290668, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647445 ], [ -87.274876, 38.646238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668356 ], [ -87.329121, 38.667016 ], [ -87.326374, 38.665944 ], [ -87.295303, 38.651332 ], [ -87.290668, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647445 ], [ -87.274876, 38.646238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281399, 38.648517 ], [ -87.283115, 38.649724 ], [ -87.285347, 38.650930 ], [ -87.292042, 38.652405 ], [ -87.294445, 38.653209 ], [ -87.296333, 38.654282 ], [ -87.298737, 38.656292 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251873, 38.646640 ], [ -87.267151, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.279682, 38.647310 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251873, 38.646640 ], [ -87.266464, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.275047, 38.646506 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251873, 38.646640 ], [ -87.266464, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.275047, 38.646506 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271786, 38.645836 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271786, 38.645836 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646372 ], [ -87.265434, 38.645568 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 131, "y": 195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448597, 38.811891 ], [ -87.446537, 38.815770 ], [ -87.444649, 38.822591 ], [ -87.433319, 38.867781 ], [ -87.433491, 38.870186 ], [ -87.434521, 38.872726 ], [ -87.435894, 38.874597 ], [ -87.439499, 38.878339 ], [ -87.440872, 38.880209 ], [ -87.442245, 38.882882 ], [ -87.442932, 38.885688 ], [ -87.442932, 38.888093 ], [ -87.442417, 38.890766 ], [ -87.437954, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.446880, 38.847997 ], [ -87.444477, 38.852542 ], [ -87.444820, 38.853478 ], [ -87.447910, 38.855483 ], [ -87.448425, 38.856152 ], [ -87.448082, 38.863103 ], [ -87.447739, 38.864439 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448597, 38.811891 ], [ -87.446537, 38.815770 ], [ -87.444649, 38.822591 ], [ -87.433319, 38.867781 ], [ -87.433491, 38.870186 ], [ -87.434521, 38.872726 ], [ -87.435894, 38.874597 ], [ -87.439499, 38.878339 ], [ -87.440872, 38.880209 ], [ -87.442245, 38.882882 ], [ -87.442932, 38.885688 ], [ -87.442932, 38.888093 ], [ -87.442417, 38.890766 ], [ -87.437954, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448254, 38.811891 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.434006, 38.872592 ], [ -87.435379, 38.874329 ], [ -87.438984, 38.878205 ], [ -87.440701, 38.880343 ], [ -87.441902, 38.882882 ], [ -87.442589, 38.885822 ], [ -87.442589, 38.888761 ], [ -87.442074, 38.890766 ], [ -87.437611, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448254, 38.811891 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.434006, 38.872592 ], [ -87.435379, 38.874329 ], [ -87.438984, 38.878205 ], [ -87.440701, 38.880343 ], [ -87.441902, 38.882882 ], [ -87.442589, 38.885822 ], [ -87.442589, 38.888761 ], [ -87.442074, 38.890766 ], [ -87.437611, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448254, 38.811891 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.434006, 38.872592 ], [ -87.435379, 38.874329 ], [ -87.438984, 38.878205 ], [ -87.440701, 38.880343 ], [ -87.441902, 38.882882 ], [ -87.442589, 38.885822 ], [ -87.442589, 38.888761 ], [ -87.442074, 38.890766 ], [ -87.437611, 38.902255 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 262, "y": 393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490883 ], [ -87.561636, 38.507811 ], [ -87.561035, 38.510027 ], [ -87.559834, 38.511975 ], [ -87.558117, 38.513721 ], [ -87.556057, 38.515199 ], [ -87.542839, 38.521243 ], [ -87.541809, 38.521847 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538548, 38.525809 ], [ -87.538204, 38.527622 ], [ -87.538462, 38.551186 ], [ -87.538633, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564039, 38.490883 ], [ -87.561293, 38.508483 ], [ -87.560778, 38.509826 ], [ -87.559834, 38.511505 ], [ -87.558203, 38.513385 ], [ -87.556486, 38.514661 ], [ -87.554340, 38.515736 ], [ -87.541981, 38.521511 ], [ -87.540522, 38.522518 ], [ -87.539749, 38.523324 ], [ -87.539062, 38.524130 ], [ -87.538204, 38.525876 ], [ -87.537947, 38.527756 ], [ -87.538118, 38.550246 ], [ -87.538290, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490883 ], [ -87.561636, 38.507811 ], [ -87.561035, 38.510027 ], [ -87.559834, 38.511975 ], [ -87.558117, 38.513721 ], [ -87.556057, 38.515199 ], [ -87.542839, 38.521243 ], [ -87.541809, 38.521847 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538548, 38.525809 ], [ -87.538204, 38.527622 ], [ -87.538462, 38.551186 ], [ -87.538633, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564039, 38.490883 ], [ -87.561293, 38.508483 ], [ -87.560778, 38.509826 ], [ -87.559834, 38.511505 ], [ -87.558203, 38.513385 ], [ -87.556486, 38.514661 ], [ -87.554340, 38.515736 ], [ -87.541981, 38.521511 ], [ -87.540522, 38.522518 ], [ -87.539749, 38.523324 ], [ -87.539062, 38.524130 ], [ -87.538204, 38.525876 ], [ -87.537947, 38.527756 ], [ -87.538118, 38.550246 ], [ -87.538290, 38.553535 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 262, "y": 392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538462, 38.551186 ], [ -87.538633, 38.554274 ], [ -87.538633, 38.575011 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.609024 ], [ -87.538977, 38.610566 ], [ -87.538548, 38.612042 ], [ -87.534685, 38.620827 ], [ -87.533484, 38.624180 ], [ -87.533054, 38.625722 ], [ -87.532196, 38.630349 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.550246 ], [ -87.538376, 38.555146 ], [ -87.538376, 38.574005 ], [ -87.538633, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609158 ], [ -87.538548, 38.610969 ], [ -87.538290, 38.611975 ], [ -87.533913, 38.622101 ], [ -87.533398, 38.623576 ], [ -87.532883, 38.625521 ], [ -87.532196, 38.628740 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535543, 38.619955 ], [ -87.534170, 38.623107 ], [ -87.533569, 38.625052 ], [ -87.533226, 38.627130 ], [ -87.533569, 38.628740 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538462, 38.551186 ], [ -87.538633, 38.554274 ], [ -87.538633, 38.575011 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.609024 ], [ -87.538977, 38.610566 ], [ -87.538548, 38.612042 ], [ -87.534685, 38.620827 ], [ -87.533484, 38.624180 ], [ -87.533054, 38.625722 ], [ -87.532196, 38.630349 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.550246 ], [ -87.538376, 38.555146 ], [ -87.538376, 38.574005 ], [ -87.538633, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609158 ], [ -87.538548, 38.610969 ], [ -87.538290, 38.611975 ], [ -87.533913, 38.622101 ], [ -87.533398, 38.623576 ], [ -87.532883, 38.625521 ], [ -87.532196, 38.628740 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 263, "y": 393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519832 ], [ -87.542496, 38.521444 ], [ -87.541466, 38.522115 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538548, 38.525809 ], [ -87.538204, 38.527622 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519564 ], [ -87.542839, 38.521041 ], [ -87.541466, 38.521780 ], [ -87.539749, 38.523324 ], [ -87.539062, 38.524130 ], [ -87.538204, 38.525876 ], [ -87.537947, 38.527756 ], [ -87.538118, 38.548165 ], [ -87.538290, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519832 ], [ -87.542496, 38.521444 ], [ -87.541466, 38.522115 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538548, 38.525809 ], [ -87.538204, 38.527622 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519564 ], [ -87.542839, 38.521041 ], [ -87.541466, 38.521780 ], [ -87.539749, 38.523324 ], [ -87.539062, 38.524130 ], [ -87.538204, 38.525876 ], [ -87.537947, 38.527756 ], [ -87.538118, 38.548165 ], [ -87.538290, 38.553535 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 263, "y": 392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473059, 38.759505 ], [ -87.469282, 38.768941 ], [ -87.465935, 38.778309 ], [ -87.465334, 38.780718 ], [ -87.464046, 38.789014 ], [ -87.463617, 38.790754 ], [ -87.463017, 38.792226 ], [ -87.461386, 38.794901 ], [ -87.449026, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446108, 38.816907 ], [ -87.444649, 38.822591 ], [ -87.443275, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.554274 ], [ -87.538633, 38.575011 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.609024 ], [ -87.538977, 38.610566 ], [ -87.538548, 38.612042 ], [ -87.534685, 38.620827 ], [ -87.533484, 38.624247 ], [ -87.532711, 38.627399 ], [ -87.529707, 38.644629 ], [ -87.529106, 38.646506 ], [ -87.527733, 38.648584 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.548165 ], [ -87.538376, 38.555146 ], [ -87.538376, 38.574005 ], [ -87.538633, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609963 ], [ -87.538290, 38.611975 ], [ -87.533913, 38.622101 ], [ -87.533140, 38.624448 ], [ -87.532625, 38.626661 ], [ -87.529449, 38.644495 ], [ -87.528934, 38.646171 ], [ -87.527561, 38.648316 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.488251, 38.697568 ], [ -87.486877, 38.698305 ], [ -87.486019, 38.698975 ], [ -87.485075, 38.699980 ], [ -87.484131, 38.701588 ], [ -87.483873, 38.702458 ], [ -87.483702, 38.703798 ], [ -87.484303, 38.722684 ], [ -87.482758, 38.734000 ], [ -87.482071, 38.736946 ], [ -87.469282, 38.768941 ], [ -87.466364, 38.776904 ], [ -87.465334, 38.780718 ], [ -87.463875, 38.789683 ], [ -87.463017, 38.792226 ], [ -87.461386, 38.794901 ], [ -87.449026, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446108, 38.816907 ], [ -87.444649, 38.822591 ], [ -87.443275, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493315, 38.694956 ], [ -87.487564, 38.697702 ], [ -87.486706, 38.698305 ], [ -87.485590, 38.699243 ], [ -87.484903, 38.699980 ], [ -87.484303, 38.700784 ], [ -87.483788, 38.701989 ], [ -87.483530, 38.702793 ], [ -87.483444, 38.704602 ], [ -87.484131, 38.722349 ], [ -87.482586, 38.733598 ], [ -87.481728, 38.736946 ], [ -87.468939, 38.769008 ], [ -87.466192, 38.776570 ], [ -87.464991, 38.780651 ], [ -87.463617, 38.789349 ], [ -87.462931, 38.791557 ], [ -87.462072, 38.793229 ], [ -87.461300, 38.794567 ], [ -87.448854, 38.811088 ], [ -87.447653, 38.812894 ], [ -87.446709, 38.814566 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.442932, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493315, 38.694956 ], [ -87.487564, 38.697702 ], [ -87.486706, 38.698305 ], [ -87.485590, 38.699243 ], [ -87.484903, 38.699980 ], [ -87.484303, 38.700784 ], [ -87.483788, 38.701989 ], [ -87.483530, 38.702793 ], [ -87.483444, 38.704602 ], [ -87.484131, 38.722349 ], [ -87.482586, 38.733598 ], [ -87.481728, 38.736946 ], [ -87.468939, 38.769008 ], [ -87.466192, 38.776570 ], [ -87.464991, 38.780651 ], [ -87.463617, 38.789349 ], [ -87.462931, 38.791557 ], [ -87.462072, 38.793229 ], [ -87.461300, 38.794567 ], [ -87.448854, 38.811088 ], [ -87.447653, 38.812894 ], [ -87.446709, 38.814566 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.442932, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493315, 38.694956 ], [ -87.487564, 38.697702 ], [ -87.486706, 38.698305 ], [ -87.485590, 38.699243 ], [ -87.484903, 38.699980 ], [ -87.484303, 38.700784 ], [ -87.483788, 38.701989 ], [ -87.483530, 38.702793 ], [ -87.483444, 38.704602 ], [ -87.484131, 38.722349 ], [ -87.482586, 38.733598 ], [ -87.481728, 38.736946 ], [ -87.468939, 38.769008 ], [ -87.466192, 38.776570 ], [ -87.464991, 38.780651 ], [ -87.463617, 38.789349 ], [ -87.462931, 38.791557 ], [ -87.462072, 38.793229 ], [ -87.461300, 38.794567 ], [ -87.448854, 38.811088 ], [ -87.447653, 38.812894 ], [ -87.446709, 38.814566 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.442932, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519236, 38.707415 ], [ -87.510910, 38.707884 ], [ -87.509108, 38.707884 ], [ -87.505760, 38.707482 ], [ -87.503872, 38.706946 ], [ -87.502327, 38.706410 ], [ -87.500696, 38.705539 ], [ -87.498808, 38.704267 ], [ -87.497435, 38.703061 ], [ -87.496662, 38.702056 ], [ -87.495203, 38.699712 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519236, 38.707214 ], [ -87.510996, 38.707616 ], [ -87.509108, 38.707683 ], [ -87.506704, 38.707415 ], [ -87.505417, 38.707147 ], [ -87.503099, 38.706410 ], [ -87.502155, 38.706008 ], [ -87.500782, 38.705339 ], [ -87.499237, 38.704200 ], [ -87.497778, 38.702927 ], [ -87.496576, 38.701521 ], [ -87.495546, 38.699712 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497005, 38.693281 ], [ -87.496576, 38.693415 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.497005, 38.693281 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.755020 ], [ -87.481813, 38.737683 ], [ -87.482672, 38.734603 ], [ -87.484303, 38.722684 ], [ -87.483702, 38.703798 ], [ -87.483959, 38.701922 ], [ -87.484474, 38.700918 ], [ -87.485075, 38.699980 ], [ -87.486019, 38.698975 ], [ -87.486877, 38.698305 ], [ -87.488251, 38.697568 ], [ -87.493744, 38.694889 ], [ -87.493658, 38.694822 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841663", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694822 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694822 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694822 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496576, 38.693415 ], [ -87.493658, 38.694822 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496576, 38.693415 ], [ -87.493658, 38.694822 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492800, 38.692678 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490568, 38.687654 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490568, 38.687654 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694822 ], [ -87.490568, 38.686850 ], [ -87.490311, 38.685443 ], [ -87.490139, 38.682428 ], [ -87.489882, 38.681356 ], [ -87.489109, 38.679882 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.484388, 38.678609 ], [ -87.485247, 38.679145 ], [ -87.486362, 38.680016 ], [ -87.487135, 38.680954 ], [ -87.489023, 38.684170 ], [ -87.489967, 38.686180 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509365, 38.661788 ], [ -87.503529, 38.665675 ], [ -87.491856, 38.674320 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535543, 38.619955 ], [ -87.534170, 38.623107 ], [ -87.533569, 38.625052 ], [ -87.533226, 38.627130 ], [ -87.533569, 38.628740 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672310 ], [ -87.493744, 38.673315 ], [ -87.492542, 38.674588 ], [ -87.490654, 38.677604 ], [ -87.490225, 38.678944 ], [ -87.490311, 38.685443 ], [ -87.490740, 38.687319 ], [ -87.491426, 38.689195 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674320 ], [ -87.490225, 38.675392 ], [ -87.489109, 38.676330 ], [ -87.488251, 38.677537 ], [ -87.487736, 38.678877 ], [ -87.487564, 38.679681 ], [ -87.487650, 38.681155 ], [ -87.487993, 38.682227 ], [ -87.489023, 38.684170 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.484388, 38.678609 ], [ -87.485247, 38.679145 ], [ -87.486706, 38.680351 ], [ -87.487650, 38.681758 ], [ -87.489281, 38.684773 ], [ -87.490568, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487822, 38.678542 ], [ -87.489109, 38.679882 ], [ -87.489710, 38.680954 ], [ -87.490139, 38.682428 ], [ -87.490225, 38.683701 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.484818, 38.678609 ], [ -87.486105, 38.678743 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.484818, 38.678609 ], [ -87.486105, 38.678743 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492542, 38.674655 ], [ -87.490997, 38.676732 ], [ -87.490396, 38.677335 ], [ -87.489109, 38.678073 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492542, 38.674655 ], [ -87.490997, 38.676732 ], [ -87.490396, 38.677335 ], [ -87.489109, 38.678073 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674320 ], [ -87.488937, 38.676062 ], [ -87.487650, 38.676464 ], [ -87.486620, 38.676732 ], [ -87.485676, 38.676799 ], [ -87.484131, 38.676799 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471170, 38.674722 ], [ -87.475376, 38.675057 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.554274 ], [ -87.538633, 38.575011 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.609024 ], [ -87.538977, 38.610566 ], [ -87.538548, 38.612042 ], [ -87.534685, 38.620827 ], [ -87.533484, 38.624247 ], [ -87.532711, 38.627399 ], [ -87.529707, 38.644629 ], [ -87.529106, 38.646506 ], [ -87.528076, 38.648115 ], [ -87.527218, 38.649120 ], [ -87.525759, 38.650461 ], [ -87.516575, 38.657164 ], [ -87.503357, 38.666078 ], [ -87.493744, 38.673315 ], [ -87.492542, 38.674588 ], [ -87.490654, 38.677604 ], [ -87.490225, 38.679413 ], [ -87.490311, 38.684907 ], [ -87.490482, 38.686515 ], [ -87.491426, 38.689195 ], [ -87.493658, 38.694822 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.548165 ], [ -87.538376, 38.555146 ], [ -87.538376, 38.574005 ], [ -87.538548, 38.591986 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609158 ], [ -87.538548, 38.610969 ], [ -87.538290, 38.611975 ], [ -87.533913, 38.622101 ], [ -87.533140, 38.624448 ], [ -87.532625, 38.626661 ], [ -87.529449, 38.644495 ], [ -87.529278, 38.645433 ], [ -87.528419, 38.647109 ], [ -87.527304, 38.648718 ], [ -87.526016, 38.649925 ], [ -87.516832, 38.656695 ], [ -87.509451, 38.661721 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487822, 38.678542 ], [ -87.486534, 38.677738 ], [ -87.485247, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.473917, 38.674856 ], [ -87.460957, 38.674052 ], [ -87.456923, 38.673918 ], [ -87.428083, 38.675593 ], [ -87.425251, 38.676062 ], [ -87.412634, 38.679681 ], [ -87.410660, 38.679949 ], [ -87.408943, 38.679949 ], [ -87.395897, 38.678207 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675124 ], [ -87.356844, 38.672645 ], [ -87.335300, 38.668289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487822, 38.678542 ], [ -87.486534, 38.677738 ], [ -87.485247, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.473917, 38.674856 ], [ -87.460957, 38.674052 ], [ -87.456923, 38.673918 ], [ -87.428083, 38.675593 ], [ -87.425251, 38.676062 ], [ -87.412634, 38.679681 ], [ -87.410660, 38.679949 ], [ -87.408943, 38.679949 ], [ -87.395897, 38.678207 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675124 ], [ -87.356844, 38.672645 ], [ -87.335300, 38.668289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335043, 38.668490 ], [ -87.371178, 38.675660 ], [ -87.374268, 38.676129 ], [ -87.395811, 38.678408 ], [ -87.402849, 38.679413 ], [ -87.409201, 38.680150 ], [ -87.410831, 38.680150 ], [ -87.412720, 38.679882 ], [ -87.425079, 38.676330 ], [ -87.427654, 38.675861 ], [ -87.455292, 38.674186 ], [ -87.458725, 38.674119 ], [ -87.460957, 38.674253 ], [ -87.473230, 38.675057 ], [ -87.475376, 38.675459 ], [ -87.476664, 38.675794 ], [ -87.481556, 38.677537 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.476664, 38.675794 ], [ -87.475376, 38.675459 ], [ -87.473230, 38.675057 ], [ -87.460957, 38.674253 ], [ -87.458725, 38.674119 ], [ -87.455292, 38.674186 ], [ -87.427654, 38.675861 ], [ -87.425079, 38.676330 ], [ -87.412720, 38.679882 ], [ -87.410831, 38.680150 ], [ -87.409201, 38.680150 ], [ -87.402849, 38.679413 ], [ -87.395811, 38.678408 ], [ -87.374268, 38.676129 ], [ -87.371178, 38.675660 ], [ -87.335043, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324314, 38.665072 ], [ -87.317362, 38.661721 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274961, 38.646439 ], [ -87.283630, 38.647914 ], [ -87.285862, 38.648383 ], [ -87.289467, 38.649388 ], [ -87.293415, 38.650729 ], [ -87.297535, 38.652673 ], [ -87.325430, 38.665810 ], [ -87.329292, 38.667217 ], [ -87.335043, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274961, 38.646439 ], [ -87.283630, 38.647914 ], [ -87.285862, 38.648383 ], [ -87.289467, 38.649388 ], [ -87.293415, 38.650729 ], [ -87.297535, 38.652673 ], [ -87.325430, 38.665810 ], [ -87.329292, 38.667217 ], [ -87.335043, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668289 ], [ -87.331781, 38.667619 ], [ -87.329121, 38.666949 ], [ -87.326374, 38.665944 ], [ -87.316246, 38.661252 ], [ -87.295218, 38.651265 ], [ -87.290583, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647377 ], [ -87.274876, 38.646238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668289 ], [ -87.331781, 38.667619 ], [ -87.329121, 38.666949 ], [ -87.326374, 38.665944 ], [ -87.316246, 38.661252 ], [ -87.295218, 38.651265 ], [ -87.290583, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647377 ], [ -87.274876, 38.646238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281313, 38.648450 ], [ -87.283115, 38.649724 ], [ -87.283974, 38.650260 ], [ -87.285347, 38.650863 ], [ -87.286978, 38.651332 ], [ -87.292042, 38.652338 ], [ -87.294359, 38.653142 ], [ -87.296247, 38.654282 ], [ -87.298737, 38.656225 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251787, 38.646640 ], [ -87.265005, 38.645769 ], [ -87.267151, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.279596, 38.647243 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251787, 38.646640 ], [ -87.266378, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.274961, 38.646439 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251787, 38.646640 ], [ -87.266378, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.274961, 38.646439 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271700, 38.645769 ], [ -87.265434, 38.645501 ], [ -87.251616, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271700, 38.645769 ], [ -87.265434, 38.645501 ], [ -87.251616, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251616, 38.646372 ], [ -87.265434, 38.645501 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 263, "y": 391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.446022, 38.817241 ], [ -87.444649, 38.822591 ], [ -87.433662, 38.865976 ], [ -87.433319, 38.867714 ], [ -87.433319, 38.868984 ], [ -87.433491, 38.870186 ], [ -87.433920, 38.871590 ], [ -87.434521, 38.872726 ], [ -87.435808, 38.874530 ], [ -87.439413, 38.878272 ], [ -87.440786, 38.880143 ], [ -87.442160, 38.882815 ], [ -87.442846, 38.885621 ], [ -87.442846, 38.888093 ], [ -87.442331, 38.890766 ], [ -87.437868, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832153 ], [ -87.449112, 38.833022 ], [ -87.446795, 38.847930 ], [ -87.446280, 38.848933 ], [ -87.444477, 38.852008 ], [ -87.444391, 38.852542 ], [ -87.444477, 38.852943 ], [ -87.444820, 38.853478 ], [ -87.447824, 38.855417 ], [ -87.448339, 38.856152 ], [ -87.447996, 38.863036 ], [ -87.447653, 38.864372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.446022, 38.817241 ], [ -87.444649, 38.822591 ], [ -87.433662, 38.865976 ], [ -87.433319, 38.867714 ], [ -87.433319, 38.868984 ], [ -87.433491, 38.870186 ], [ -87.433920, 38.871590 ], [ -87.434521, 38.872726 ], [ -87.435808, 38.874530 ], [ -87.439413, 38.878272 ], [ -87.440786, 38.880143 ], [ -87.442160, 38.882815 ], [ -87.442846, 38.885621 ], [ -87.442846, 38.888093 ], [ -87.442331, 38.890766 ], [ -87.437868, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.445679, 38.817241 ], [ -87.444305, 38.822591 ], [ -87.433405, 38.865642 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.433491, 38.871256 ], [ -87.434006, 38.872525 ], [ -87.435293, 38.874329 ], [ -87.438984, 38.878138 ], [ -87.440615, 38.880276 ], [ -87.441816, 38.882815 ], [ -87.442245, 38.884152 ], [ -87.442503, 38.885822 ], [ -87.442503, 38.888695 ], [ -87.442074, 38.890699 ], [ -87.437525, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.445679, 38.817241 ], [ -87.444305, 38.822591 ], [ -87.433405, 38.865642 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.433491, 38.871256 ], [ -87.434006, 38.872525 ], [ -87.435293, 38.874329 ], [ -87.438984, 38.878138 ], [ -87.440615, 38.880276 ], [ -87.441816, 38.882815 ], [ -87.442245, 38.884152 ], [ -87.442503, 38.885822 ], [ -87.442503, 38.888695 ], [ -87.442074, 38.890699 ], [ -87.437525, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.445679, 38.817241 ], [ -87.444305, 38.822591 ], [ -87.433405, 38.865642 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.433491, 38.871256 ], [ -87.434006, 38.872525 ], [ -87.435293, 38.874329 ], [ -87.438984, 38.878138 ], [ -87.440615, 38.880276 ], [ -87.441816, 38.882815 ], [ -87.442245, 38.884152 ], [ -87.442503, 38.885822 ], [ -87.442503, 38.888695 ], [ -87.442074, 38.890699 ], [ -87.437525, 38.902255 ] ] } } +] } +] } +] } diff --git a/tests/knox/out/-zg_-P.json b/tests/knox/out/-zg_-P.json new file mode 100644 index 0000000..3eb9784 --- /dev/null +++ b/tests/knox/out/-zg_-P.json @@ -0,0 +1,1144 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-87.564090,38.490831,-87.251603,38.902199", +"center": "-87.363281,38.685378,10", +"description": "tests/knox/out/-zg_-P.json.check.mbtiles", +"format": "pbf", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 10, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} } ] }", +"maxzoom": "10", +"minzoom": "0", +"name": "tests/knox/out/-zg_-P.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.822591 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 38.548165 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 38.548165 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.822591 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 38.548165 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 38.548165 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.788345 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.856820 ], [ -87.451172, 38.891033 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.513788 ], [ -87.539062, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.513788 ], [ -87.539062, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.539062, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.788345 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.513788 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.513788 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.319336, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.319336, 38.651198 ], [ -87.319336, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.319336, 38.651198 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.771216 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.839708 ], [ -87.451172, 38.873929 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.496594 ], [ -87.539062, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.496594 ], [ -87.539062, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.517090, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.771216 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.702659 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.702659 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.668356 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.496594 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.496594 ], [ -87.517090, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.319336, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.297363, 38.651198 ], [ -87.319336, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.297363, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.762650 ], [ -87.440186, 38.873929 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.839708 ], [ -87.451172, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.572021, 38.496594 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.572021, 38.496594 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.831150 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.831150 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.831150 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.831150 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.528076, 38.711233 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.528076, 38.711233 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.506104, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.762650 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.506104, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.506104, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.668356 ], [ -87.495117, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.625454 ], [ -87.539062, 38.634036 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.495117, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.495117, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.484131, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.676933 ], [ -87.484131, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.572021, 38.496594 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.651198 ], [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.572021, 38.496594 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.616870 ], [ -87.517090, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.676933 ], [ -87.484131, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.341309, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.330322, 38.668356 ], [ -87.319336, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.286377, 38.651198 ], [ -87.308350, 38.659778 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.286377, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.762650 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.835429 ], [ -87.451172, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.484131, 38.702659 ], [ -87.484131, 38.741231 ], [ -87.445679, 38.822591 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.484131, 38.706946 ], [ -87.484131, 38.741231 ], [ -87.467651, 38.796908 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.484131, 38.706946 ], [ -87.484131, 38.741231 ], [ -87.467651, 38.796908 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.484131, 38.706946 ], [ -87.484131, 38.741231 ], [ -87.467651, 38.796908 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.522583, 38.711233 ], [ -87.506104, 38.706946 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.522583, 38.711233 ], [ -87.506104, 38.706946 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.500610, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.478638, 38.758367 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.500610, 38.694085 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.500610, 38.694085 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.689798 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.689798 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.511597, 38.664067 ], [ -87.495117, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.621162 ], [ -87.533569, 38.629745 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672645 ], [ -87.495117, 38.689798 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.489624, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.495117, 38.689798 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.681222 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.484131, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.676933 ], [ -87.484131, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.612578 ], [ -87.533569, 38.651198 ], [ -87.495117, 38.681222 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.612578 ], [ -87.533569, 38.651198 ], [ -87.511597, 38.664067 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.681222 ], [ -87.456665, 38.676933 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.681222 ], [ -87.456665, 38.676933 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.672645 ], [ -87.412720, 38.681222 ], [ -87.484131, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.672645 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.668356 ], [ -87.319336, 38.664067 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.335815, 38.672645 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.335815, 38.672645 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.286377, 38.651198 ], [ -87.302856, 38.659778 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.280884, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.269897, 38.646908 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.760509 ], [ -87.464905, 38.794768 ], [ -87.448425, 38.818311 ], [ -87.434692, 38.867513 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.833289 ], [ -87.445679, 38.854681 ], [ -87.448425, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.528830 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.528830 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.484131, 38.702659 ], [ -87.484131, 38.736946 ], [ -87.464905, 38.792627 ], [ -87.445679, 38.820451 ], [ -87.434692, 38.869652 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.484131, 38.704803 ], [ -87.484131, 38.736946 ], [ -87.464905, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.484131, 38.704803 ], [ -87.484131, 38.736946 ], [ -87.464905, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.484131, 38.704803 ], [ -87.484131, 38.736946 ], [ -87.464905, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.709089 ], [ -87.503357, 38.706946 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.709089 ], [ -87.503357, 38.706946 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.497864, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.475891, 38.756225 ], [ -87.484131, 38.734804 ], [ -87.484131, 38.702659 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.687654 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.687654 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.489624, 38.681222 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.511597, 38.661922 ], [ -87.492371, 38.674789 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.536316, 38.621162 ], [ -87.533569, 38.629745 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672645 ], [ -87.492371, 38.679078 ], [ -87.492371, 38.689798 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.489624, 38.681222 ], [ -87.489624, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.492371, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.679078 ], [ -87.492371, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.674789 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.674789 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.481384, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.674789 ], [ -87.481384, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.528830 ], [ -87.539062, 38.610432 ], [ -87.530823, 38.646908 ], [ -87.492371, 38.676933 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.612578 ], [ -87.530823, 38.649053 ], [ -87.511597, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.679078 ], [ -87.456665, 38.674789 ], [ -87.409973, 38.681222 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.679078 ], [ -87.456665, 38.674789 ], [ -87.409973, 38.681222 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.670501 ], [ -87.409973, 38.681222 ], [ -87.456665, 38.674789 ], [ -87.484131, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.456665, 38.674789 ], [ -87.409973, 38.681222 ], [ -87.335815, 38.670501 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.666212 ], [ -87.319336, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.294617, 38.651198 ], [ -87.335815, 38.670501 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.294617, 38.651198 ], [ -87.335815, 38.670501 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.291870, 38.651198 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.291870, 38.651198 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.283630, 38.649053 ], [ -87.300110, 38.657633 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.280884, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.267151, 38.646908 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.760509 ], [ -87.463531, 38.792627 ], [ -87.447052, 38.817241 ], [ -87.434692, 38.867513 ], [ -87.434692, 38.872859 ], [ -87.442932, 38.885688 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449799, 38.832220 ], [ -87.445679, 38.853612 ], [ -87.448425, 38.856820 ], [ -87.448425, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.565155, 38.491219 ], [ -87.561035, 38.512714 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.527756 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624381 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.565155, 38.491219 ], [ -87.559662, 38.512714 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.625454 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.484131, 38.702659 ], [ -87.482758, 38.735875 ], [ -87.467651, 38.777640 ], [ -87.463531, 38.791557 ], [ -87.447052, 38.818311 ], [ -87.433319, 38.868583 ], [ -87.434692, 38.872859 ], [ -87.442932, 38.885688 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.484131, 38.702659 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.776570 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.818311 ], [ -87.433319, 38.868583 ], [ -87.442932, 38.886757 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.484131, 38.702659 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.776570 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.818311 ], [ -87.433319, 38.868583 ], [ -87.442932, 38.886757 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.484131, 38.702659 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.776570 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.818311 ], [ -87.433319, 38.868583 ], [ -87.442932, 38.886757 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.708018 ], [ -87.507477, 38.708018 ], [ -87.501984, 38.705874 ], [ -87.496490, 38.701588 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.708018 ], [ -87.508850, 38.708018 ], [ -87.501984, 38.705874 ], [ -87.497864, 38.701588 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.497864, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.475891, 38.755154 ], [ -87.482758, 38.734804 ], [ -87.484131, 38.702659 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.693013 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.488251, 38.681222 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.510223, 38.661922 ], [ -87.492371, 38.674789 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.536316, 38.620089 ], [ -87.533569, 38.629745 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672645 ], [ -87.490997, 38.679078 ], [ -87.492371, 38.689798 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.488251, 38.680150 ], [ -87.489624, 38.684438 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.486877, 38.681222 ], [ -87.490997, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.679078 ], [ -87.490997, 38.684438 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.674789 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.674789 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.486877, 38.676933 ], [ -87.481384, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471771, 38.674789 ], [ -87.481384, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.565155, 38.491219 ], [ -87.561035, 38.512714 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.527756 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645836 ], [ -87.526703, 38.651198 ], [ -87.493744, 38.674789 ], [ -87.490997, 38.679078 ], [ -87.490997, 38.685510 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.565155, 38.491219 ], [ -87.559662, 38.512714 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.611505 ], [ -87.533569, 38.625454 ], [ -87.529449, 38.647981 ], [ -87.510223, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.679078 ], [ -87.475891, 38.675861 ], [ -87.458038, 38.674789 ], [ -87.429199, 38.675861 ], [ -87.409973, 38.680150 ], [ -87.370148, 38.675861 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.679078 ], [ -87.475891, 38.675861 ], [ -87.458038, 38.674789 ], [ -87.429199, 38.675861 ], [ -87.409973, 38.680150 ], [ -87.370148, 38.675861 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.669428 ], [ -87.371521, 38.675861 ], [ -87.409973, 38.680150 ], [ -87.427826, 38.675861 ], [ -87.455292, 38.674789 ], [ -87.474518, 38.675861 ], [ -87.482758, 38.678006 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.474518, 38.675861 ], [ -87.455292, 38.674789 ], [ -87.427826, 38.675861 ], [ -87.409973, 38.680150 ], [ -87.371521, 38.675861 ], [ -87.335815, 38.669428 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.665139 ], [ -87.317963, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.294617, 38.651198 ], [ -87.326202, 38.666212 ], [ -87.335815, 38.669428 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.294617, 38.651198 ], [ -87.326202, 38.666212 ], [ -87.335815, 38.669428 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.666212 ], [ -87.291870, 38.650126 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.666212 ], [ -87.291870, 38.650126 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.282257, 38.649053 ], [ -87.298737, 38.656561 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.267151, 38.645836 ], [ -87.280884, 38.647981 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.252045, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.252045, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.265778, 38.645836 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 49 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.759973 ], [ -87.466278, 38.778711 ], [ -87.463531, 38.792627 ], [ -87.447739, 38.814031 ], [ -87.444992, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.447052, 38.848264 ], [ -87.444992, 38.853077 ], [ -87.448425, 38.856285 ], [ -87.447739, 38.864840 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564468, 38.491219 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541809, 38.522384 ], [ -87.538376, 38.527219 ], [ -87.539062, 38.609896 ], [ -87.533569, 38.624381 ], [ -87.530136, 38.644763 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564468, 38.491219 ], [ -87.561722, 38.508953 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541809, 38.521847 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624918 ], [ -87.529449, 38.644763 ], [ -87.528076, 38.648517 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.701588 ], [ -87.484818, 38.723019 ], [ -87.482071, 38.736946 ], [ -87.466965, 38.777105 ], [ -87.463531, 38.792627 ], [ -87.447739, 38.814031 ], [ -87.444992, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.702123 ], [ -87.484131, 38.722483 ], [ -87.482071, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.792092 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.702123 ], [ -87.484131, 38.722483 ], [ -87.482071, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.792092 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.702123 ], [ -87.484131, 38.722483 ], [ -87.482071, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.792092 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.707482 ], [ -87.509537, 38.708018 ], [ -87.502670, 38.706410 ], [ -87.497177, 38.702123 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.707482 ], [ -87.509537, 38.708018 ], [ -87.502670, 38.706410 ], [ -87.497177, 38.701588 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.497177, 38.693549 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.475204, 38.755154 ], [ -87.482758, 38.734804 ], [ -87.484818, 38.723019 ], [ -87.484131, 38.702123 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497177, 38.693549 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497177, 38.693549 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.693013 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.490997, 38.687118 ], [ -87.490311, 38.681758 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.487564, 38.681222 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509537, 38.661922 ], [ -87.492371, 38.674789 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535629, 38.620089 ], [ -87.533569, 38.625454 ], [ -87.533569, 38.629209 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672645 ], [ -87.493057, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.491684, 38.689262 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.489624, 38.676397 ], [ -87.488251, 38.679078 ], [ -87.489624, 38.684438 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.486877, 38.680686 ], [ -87.490997, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.678542 ], [ -87.490311, 38.681222 ], [ -87.490311, 38.683902 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.674789 ], [ -87.490997, 38.677469 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.674789 ], [ -87.490997, 38.677469 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.486877, 38.676933 ], [ -87.480698, 38.676397 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471771, 38.674789 ], [ -87.480698, 38.676397 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564468, 38.491219 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541809, 38.522384 ], [ -87.538376, 38.527219 ], [ -87.539062, 38.609896 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645836 ], [ -87.526016, 38.650662 ], [ -87.493057, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.490311, 38.685510 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564468, 38.491219 ], [ -87.561722, 38.508953 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541809, 38.521847 ], [ -87.538376, 38.526144 ], [ -87.539062, 38.610969 ], [ -87.533569, 38.624918 ], [ -87.528763, 38.647445 ], [ -87.526016, 38.650126 ], [ -87.509537, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.678542 ], [ -87.485504, 38.677469 ], [ -87.475891, 38.675325 ], [ -87.457352, 38.674253 ], [ -87.428513, 38.675861 ], [ -87.412720, 38.680150 ], [ -87.409286, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.678542 ], [ -87.485504, 38.677469 ], [ -87.475891, 38.675325 ], [ -87.457352, 38.674253 ], [ -87.428513, 38.675861 ], [ -87.412720, 38.680150 ], [ -87.409286, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668892 ], [ -87.371521, 38.675861 ], [ -87.409286, 38.680150 ], [ -87.412720, 38.680150 ], [ -87.427826, 38.675861 ], [ -87.455292, 38.674253 ], [ -87.473831, 38.675325 ], [ -87.482071, 38.678006 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.473831, 38.675325 ], [ -87.455292, 38.674253 ], [ -87.427826, 38.675861 ], [ -87.412720, 38.680150 ], [ -87.409286, 38.680150 ], [ -87.371521, 38.675861 ], [ -87.335129, 38.668892 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.665139 ], [ -87.317963, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.286377, 38.648517 ], [ -87.293930, 38.651198 ], [ -87.325516, 38.666212 ], [ -87.335129, 38.668892 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.286377, 38.648517 ], [ -87.293930, 38.651198 ], [ -87.325516, 38.666212 ], [ -87.335129, 38.668892 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.665675 ], [ -87.291183, 38.649590 ], [ -87.275391, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.665675 ], [ -87.291183, 38.649590 ], [ -87.275391, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281570, 38.648517 ], [ -87.285690, 38.651198 ], [ -87.294617, 38.653343 ], [ -87.298737, 38.656561 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.267151, 38.645836 ], [ -87.280197, 38.647445 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.266464, 38.645836 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.266464, 38.645836 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646372 ], [ -87.265778, 38.645836 ], [ -87.252045, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646372 ], [ -87.265778, 38.645836 ], [ -87.252045, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646372 ], [ -87.265778, 38.645836 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 48 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.463531, 38.792627 ], [ -87.447739, 38.814031 ], [ -87.444992, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434692, 38.872325 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.885688 ], [ -87.442932, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.447052, 38.848264 ], [ -87.444992, 38.853077 ], [ -87.448425, 38.856285 ], [ -87.447739, 38.864840 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.463531, 38.792627 ], [ -87.447739, 38.814031 ], [ -87.444992, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434692, 38.872325 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.885688 ], [ -87.442932, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.462845, 38.792627 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434006, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.886223 ], [ -87.442245, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.462845, 38.792627 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434006, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.886223 ], [ -87.442245, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.462845, 38.792627 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434006, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.886223 ], [ -87.442245, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 65, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.759706 ], [ -87.465935, 38.778443 ], [ -87.464218, 38.789148 ], [ -87.463188, 38.792359 ], [ -87.447395, 38.814031 ], [ -87.444649, 38.822591 ], [ -87.439499, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.447395, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.524264 ], [ -87.538376, 38.526950 ], [ -87.539062, 38.609627 ], [ -87.533569, 38.624381 ], [ -87.529793, 38.644763 ], [ -87.527733, 38.648785 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508684 ], [ -87.560005, 38.511639 ], [ -87.558289, 38.513520 ], [ -87.555885, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538033, 38.526682 ], [ -87.539062, 38.610164 ], [ -87.533226, 38.624649 ], [ -87.529449, 38.644495 ], [ -87.527733, 38.648517 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.701588 ], [ -87.483788, 38.703999 ], [ -87.484474, 38.722751 ], [ -87.482071, 38.736946 ], [ -87.466621, 38.777105 ], [ -87.463188, 38.792359 ], [ -87.447395, 38.814031 ], [ -87.444649, 38.822591 ], [ -87.439499, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.485161, 38.699980 ], [ -87.483788, 38.702123 ], [ -87.483444, 38.704803 ], [ -87.484131, 38.722483 ], [ -87.481728, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.463188, 38.791557 ], [ -87.461472, 38.794768 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.439156, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.485161, 38.699980 ], [ -87.483788, 38.702123 ], [ -87.483444, 38.704803 ], [ -87.484131, 38.722483 ], [ -87.481728, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.463188, 38.791557 ], [ -87.461472, 38.794768 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.439156, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.485161, 38.699980 ], [ -87.483788, 38.702123 ], [ -87.483444, 38.704803 ], [ -87.484131, 38.722483 ], [ -87.481728, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.463188, 38.791557 ], [ -87.461472, 38.794768 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.439156, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519493, 38.707482 ], [ -87.509193, 38.708018 ], [ -87.505760, 38.707482 ], [ -87.502327, 38.706410 ], [ -87.498894, 38.704267 ], [ -87.496834, 38.702123 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519493, 38.707214 ], [ -87.509193, 38.707750 ], [ -87.505417, 38.707214 ], [ -87.502327, 38.706142 ], [ -87.499237, 38.704267 ], [ -87.496834, 38.701588 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497177, 38.693281 ], [ -87.496834, 38.693549 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.497177, 38.693281 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.755154 ], [ -87.482758, 38.734804 ], [ -87.484474, 38.722751 ], [ -87.484131, 38.702123 ], [ -87.485161, 38.699980 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496834, 38.693549 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496834, 38.693549 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.692745 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.490654, 38.686850 ], [ -87.489967, 38.681490 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.485504, 38.679346 ], [ -87.487221, 38.680954 ], [ -87.489967, 38.686314 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509537, 38.661922 ], [ -87.492027, 38.674521 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535629, 38.620089 ], [ -87.533569, 38.625186 ], [ -87.533569, 38.628941 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672377 ], [ -87.492714, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.490311, 38.685510 ], [ -87.491684, 38.689262 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492027, 38.674521 ], [ -87.489281, 38.676397 ], [ -87.487907, 38.679078 ], [ -87.487907, 38.681222 ], [ -87.489281, 38.684170 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.484474, 38.678810 ], [ -87.486877, 38.680418 ], [ -87.490654, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.489967, 38.680954 ], [ -87.490311, 38.683902 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.484818, 38.678810 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.484818, 38.678810 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492714, 38.674789 ], [ -87.490654, 38.677469 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492714, 38.674789 ], [ -87.490654, 38.677469 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492027, 38.674521 ], [ -87.488937, 38.676129 ], [ -87.486877, 38.676933 ], [ -87.484131, 38.676933 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471428, 38.674789 ], [ -87.475548, 38.675057 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.524264 ], [ -87.538376, 38.526950 ], [ -87.539062, 38.609627 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645568 ], [ -87.528076, 38.648249 ], [ -87.526016, 38.650662 ], [ -87.503357, 38.666212 ], [ -87.492714, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.490311, 38.684974 ], [ -87.490997, 38.687386 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508684 ], [ -87.560005, 38.511639 ], [ -87.558289, 38.513520 ], [ -87.555885, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538376, 38.525876 ], [ -87.538719, 38.610969 ], [ -87.533226, 38.624649 ], [ -87.529449, 38.644495 ], [ -87.528419, 38.647176 ], [ -87.526016, 38.650126 ], [ -87.509537, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485504, 38.677201 ], [ -87.475548, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.412720, 38.679882 ], [ -87.408943, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335472, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485504, 38.677201 ], [ -87.475548, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.412720, 38.679882 ], [ -87.408943, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335472, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668624 ], [ -87.371178, 38.675861 ], [ -87.409286, 38.680150 ], [ -87.412720, 38.679882 ], [ -87.427826, 38.675861 ], [ -87.455292, 38.674253 ], [ -87.473488, 38.675057 ], [ -87.476921, 38.675861 ], [ -87.481728, 38.677738 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.476921, 38.675861 ], [ -87.473488, 38.675057 ], [ -87.455292, 38.674253 ], [ -87.427826, 38.675861 ], [ -87.412720, 38.679882 ], [ -87.409286, 38.680150 ], [ -87.371178, 38.675861 ], [ -87.335129, 38.668624 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324486, 38.665139 ], [ -87.317619, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646640 ], [ -87.286034, 38.648517 ], [ -87.293587, 38.650930 ], [ -87.325516, 38.665944 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668624 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646640 ], [ -87.286034, 38.648517 ], [ -87.293587, 38.650930 ], [ -87.325516, 38.665944 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668624 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335472, 38.668356 ], [ -87.326546, 38.665944 ], [ -87.295303, 38.651466 ], [ -87.290840, 38.649590 ], [ -87.282257, 38.647445 ], [ -87.275047, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335472, 38.668356 ], [ -87.326546, 38.665944 ], [ -87.295303, 38.651466 ], [ -87.290840, 38.649590 ], [ -87.282257, 38.647445 ], [ -87.275047, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281570, 38.648517 ], [ -87.285347, 38.650930 ], [ -87.294617, 38.653343 ], [ -87.298737, 38.656292 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646640 ], [ -87.267151, 38.645836 ], [ -87.271957, 38.646104 ], [ -87.279854, 38.647445 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646640 ], [ -87.266464, 38.645836 ], [ -87.275047, 38.646640 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646640 ], [ -87.266464, 38.645836 ], [ -87.275047, 38.646640 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646372 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646372 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646372 ], [ -87.265434, 38.645568 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 65, "y": 97 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456665, 38.801189 ], [ -87.447395, 38.814031 ], [ -87.444649, 38.822591 ], [ -87.433319, 38.867781 ], [ -87.433662, 38.870186 ], [ -87.434692, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.885688 ], [ -87.442589, 38.890766 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.447052, 38.847997 ], [ -87.444649, 38.852542 ], [ -87.444992, 38.853612 ], [ -87.448425, 38.856285 ], [ -87.447739, 38.864573 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456665, 38.801189 ], [ -87.447395, 38.814031 ], [ -87.444649, 38.822591 ], [ -87.433319, 38.867781 ], [ -87.433662, 38.870186 ], [ -87.434692, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.885688 ], [ -87.442589, 38.890766 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456322, 38.801189 ], [ -87.447739, 38.813229 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.868048 ], [ -87.434006, 38.872592 ], [ -87.440872, 38.880343 ], [ -87.442589, 38.885955 ], [ -87.442245, 38.890766 ], [ -87.437782, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456322, 38.801189 ], [ -87.447739, 38.813229 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.868048 ], [ -87.434006, 38.872592 ], [ -87.440872, 38.880343 ], [ -87.442589, 38.885955 ], [ -87.442245, 38.890766 ], [ -87.437782, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456322, 38.801189 ], [ -87.447739, 38.813229 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.868048 ], [ -87.434006, 38.872592 ], [ -87.440872, 38.880343 ], [ -87.442589, 38.885955 ], [ -87.442245, 38.890766 ], [ -87.437782, 38.902255 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 131, "y": 196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.759572 ], [ -87.469368, 38.768941 ], [ -87.465935, 38.778309 ], [ -87.464046, 38.789014 ], [ -87.463017, 38.792226 ], [ -87.461472, 38.794901 ], [ -87.449112, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446194, 38.816974 ], [ -87.444649, 38.822591 ], [ -87.441902, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.449112, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.561207, 38.509624 ], [ -87.560177, 38.511639 ], [ -87.558117, 38.513788 ], [ -87.556057, 38.515266 ], [ -87.542839, 38.521310 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.524130 ], [ -87.538376, 38.526816 ], [ -87.539062, 38.609627 ], [ -87.538548, 38.612042 ], [ -87.533569, 38.624247 ], [ -87.529793, 38.644629 ], [ -87.529106, 38.646506 ], [ -87.527733, 38.648651 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508550 ], [ -87.559834, 38.511505 ], [ -87.558289, 38.513385 ], [ -87.555714, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538548, 38.525204 ], [ -87.538033, 38.526547 ], [ -87.538891, 38.610030 ], [ -87.538376, 38.612042 ], [ -87.533913, 38.622101 ], [ -87.533226, 38.624515 ], [ -87.529449, 38.644495 ], [ -87.528934, 38.646238 ], [ -87.527561, 38.648383 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.486877, 38.698372 ], [ -87.485161, 38.699980 ], [ -87.484131, 38.701588 ], [ -87.483788, 38.703865 ], [ -87.484303, 38.722751 ], [ -87.482758, 38.734000 ], [ -87.482071, 38.736946 ], [ -87.469368, 38.768941 ], [ -87.466450, 38.776971 ], [ -87.465420, 38.780718 ], [ -87.463875, 38.789683 ], [ -87.463017, 38.792226 ], [ -87.461472, 38.794901 ], [ -87.449112, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446194, 38.816974 ], [ -87.444649, 38.822591 ], [ -87.441902, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695023 ], [ -87.486706, 38.698372 ], [ -87.484989, 38.699980 ], [ -87.483788, 38.701989 ], [ -87.483444, 38.704669 ], [ -87.484131, 38.722349 ], [ -87.482414, 38.734402 ], [ -87.481728, 38.736946 ], [ -87.469025, 38.769075 ], [ -87.466278, 38.776570 ], [ -87.465076, 38.780718 ], [ -87.463703, 38.789416 ], [ -87.463017, 38.791557 ], [ -87.461300, 38.794634 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.441559, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695023 ], [ -87.486706, 38.698372 ], [ -87.484989, 38.699980 ], [ -87.483788, 38.701989 ], [ -87.483444, 38.704669 ], [ -87.484131, 38.722349 ], [ -87.482414, 38.734402 ], [ -87.481728, 38.736946 ], [ -87.469025, 38.769075 ], [ -87.466278, 38.776570 ], [ -87.465076, 38.780718 ], [ -87.463703, 38.789416 ], [ -87.463017, 38.791557 ], [ -87.461300, 38.794634 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.441559, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695023 ], [ -87.486706, 38.698372 ], [ -87.484989, 38.699980 ], [ -87.483788, 38.701989 ], [ -87.483444, 38.704669 ], [ -87.484131, 38.722349 ], [ -87.482414, 38.734402 ], [ -87.481728, 38.736946 ], [ -87.469025, 38.769075 ], [ -87.466278, 38.776570 ], [ -87.465076, 38.780718 ], [ -87.463703, 38.789416 ], [ -87.463017, 38.791557 ], [ -87.461300, 38.794634 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.441559, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519321, 38.707482 ], [ -87.509193, 38.707884 ], [ -87.505760, 38.707482 ], [ -87.502327, 38.706410 ], [ -87.498894, 38.704267 ], [ -87.496662, 38.702123 ], [ -87.495289, 38.699712 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519321, 38.707214 ], [ -87.509193, 38.707750 ], [ -87.505417, 38.707214 ], [ -87.502155, 38.706008 ], [ -87.499237, 38.704267 ], [ -87.496662, 38.701588 ], [ -87.495632, 38.699712 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497005, 38.693281 ], [ -87.496662, 38.693415 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.497005, 38.693281 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.755020 ], [ -87.481899, 38.737749 ], [ -87.482758, 38.734670 ], [ -87.484303, 38.722751 ], [ -87.483788, 38.703865 ], [ -87.483959, 38.701989 ], [ -87.485161, 38.699980 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496662, 38.693415 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496662, 38.693415 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492886, 38.692745 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.490654, 38.686850 ], [ -87.489967, 38.681356 ], [ -87.489109, 38.679882 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.485332, 38.679212 ], [ -87.487221, 38.680954 ], [ -87.489967, 38.686180 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509365, 38.661788 ], [ -87.503529, 38.665675 ], [ -87.491856, 38.674387 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535629, 38.619955 ], [ -87.533569, 38.625052 ], [ -87.533226, 38.627197 ], [ -87.533569, 38.628807 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672377 ], [ -87.492542, 38.674655 ], [ -87.490654, 38.677604 ], [ -87.490311, 38.678944 ], [ -87.490311, 38.685510 ], [ -87.491512, 38.689262 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674387 ], [ -87.489109, 38.676397 ], [ -87.488251, 38.677604 ], [ -87.487736, 38.678944 ], [ -87.487736, 38.681222 ], [ -87.489109, 38.684170 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.484474, 38.678676 ], [ -87.486706, 38.680418 ], [ -87.489281, 38.684840 ], [ -87.490654, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.489109, 38.679882 ], [ -87.489796, 38.680954 ], [ -87.490311, 38.683768 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.484818, 38.678676 ], [ -87.486191, 38.678810 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.484818, 38.678676 ], [ -87.486191, 38.678810 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492542, 38.674655 ], [ -87.490482, 38.677335 ], [ -87.489109, 38.678140 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492542, 38.674655 ], [ -87.490482, 38.677335 ], [ -87.489109, 38.678140 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674387 ], [ -87.488937, 38.676129 ], [ -87.486706, 38.676799 ], [ -87.484131, 38.676799 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471256, 38.674789 ], [ -87.475376, 38.675057 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.561207, 38.509624 ], [ -87.560177, 38.511639 ], [ -87.558117, 38.513788 ], [ -87.556057, 38.515266 ], [ -87.542839, 38.521310 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.524130 ], [ -87.538376, 38.526816 ], [ -87.539062, 38.609627 ], [ -87.538548, 38.612042 ], [ -87.533569, 38.624247 ], [ -87.529449, 38.645568 ], [ -87.528076, 38.648115 ], [ -87.525845, 38.650528 ], [ -87.516575, 38.657231 ], [ -87.503357, 38.666078 ], [ -87.493744, 38.673315 ], [ -87.492542, 38.674655 ], [ -87.490654, 38.677604 ], [ -87.490311, 38.678944 ], [ -87.490311, 38.684974 ], [ -87.490826, 38.687386 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508550 ], [ -87.559834, 38.511505 ], [ -87.558289, 38.513385 ], [ -87.555714, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538204, 38.525876 ], [ -87.538033, 38.529367 ], [ -87.538891, 38.600103 ], [ -87.538891, 38.609225 ], [ -87.538548, 38.610969 ], [ -87.533913, 38.622101 ], [ -87.533226, 38.624515 ], [ -87.529449, 38.644495 ], [ -87.528419, 38.647176 ], [ -87.527390, 38.648785 ], [ -87.526016, 38.649992 ], [ -87.516918, 38.656695 ], [ -87.509537, 38.661788 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485332, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.425251, 38.676129 ], [ -87.412720, 38.679748 ], [ -87.408943, 38.680016 ], [ -87.395897, 38.678274 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675191 ], [ -87.335300, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485332, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.425251, 38.676129 ], [ -87.412720, 38.679748 ], [ -87.408943, 38.680016 ], [ -87.395897, 38.678274 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675191 ], [ -87.335300, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668490 ], [ -87.371178, 38.675727 ], [ -87.395897, 38.678408 ], [ -87.409286, 38.680150 ], [ -87.412720, 38.679882 ], [ -87.425079, 38.676397 ], [ -87.427654, 38.675861 ], [ -87.455292, 38.674253 ], [ -87.460957, 38.674253 ], [ -87.473316, 38.675057 ], [ -87.476749, 38.675861 ], [ -87.481556, 38.677604 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.476749, 38.675861 ], [ -87.473316, 38.675057 ], [ -87.460957, 38.674253 ], [ -87.455292, 38.674253 ], [ -87.427654, 38.675861 ], [ -87.425079, 38.676397 ], [ -87.412720, 38.679882 ], [ -87.409286, 38.680150 ], [ -87.395897, 38.678408 ], [ -87.371178, 38.675727 ], [ -87.335129, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324314, 38.665139 ], [ -87.317448, 38.661788 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646506 ], [ -87.285862, 38.648383 ], [ -87.289467, 38.649456 ], [ -87.293415, 38.650796 ], [ -87.325516, 38.665810 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646506 ], [ -87.285862, 38.648383 ], [ -87.289467, 38.649456 ], [ -87.293415, 38.650796 ], [ -87.325516, 38.665810 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668356 ], [ -87.329121, 38.667016 ], [ -87.326374, 38.665944 ], [ -87.295303, 38.651332 ], [ -87.290668, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647445 ], [ -87.274876, 38.646238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668356 ], [ -87.329121, 38.667016 ], [ -87.326374, 38.665944 ], [ -87.295303, 38.651332 ], [ -87.290668, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647445 ], [ -87.274876, 38.646238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281399, 38.648517 ], [ -87.283115, 38.649724 ], [ -87.285347, 38.650930 ], [ -87.292042, 38.652405 ], [ -87.294445, 38.653209 ], [ -87.296333, 38.654282 ], [ -87.298737, 38.656292 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251873, 38.646640 ], [ -87.267151, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.279682, 38.647310 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251873, 38.646640 ], [ -87.266464, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.275047, 38.646506 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251873, 38.646640 ], [ -87.266464, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.275047, 38.646506 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271786, 38.645836 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271786, 38.645836 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646372 ], [ -87.265434, 38.645568 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 131, "y": 195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448597, 38.811891 ], [ -87.446537, 38.815770 ], [ -87.444649, 38.822591 ], [ -87.433319, 38.867781 ], [ -87.433491, 38.870186 ], [ -87.434521, 38.872726 ], [ -87.435894, 38.874597 ], [ -87.439499, 38.878339 ], [ -87.440872, 38.880209 ], [ -87.442245, 38.882882 ], [ -87.442932, 38.885688 ], [ -87.442932, 38.888093 ], [ -87.442417, 38.890766 ], [ -87.437954, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.446880, 38.847997 ], [ -87.444477, 38.852542 ], [ -87.444820, 38.853478 ], [ -87.447910, 38.855483 ], [ -87.448425, 38.856152 ], [ -87.448082, 38.863103 ], [ -87.447739, 38.864439 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448597, 38.811891 ], [ -87.446537, 38.815770 ], [ -87.444649, 38.822591 ], [ -87.433319, 38.867781 ], [ -87.433491, 38.870186 ], [ -87.434521, 38.872726 ], [ -87.435894, 38.874597 ], [ -87.439499, 38.878339 ], [ -87.440872, 38.880209 ], [ -87.442245, 38.882882 ], [ -87.442932, 38.885688 ], [ -87.442932, 38.888093 ], [ -87.442417, 38.890766 ], [ -87.437954, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448254, 38.811891 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.434006, 38.872592 ], [ -87.435379, 38.874329 ], [ -87.438984, 38.878205 ], [ -87.440701, 38.880343 ], [ -87.441902, 38.882882 ], [ -87.442589, 38.885822 ], [ -87.442589, 38.888761 ], [ -87.442074, 38.890766 ], [ -87.437611, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448254, 38.811891 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.434006, 38.872592 ], [ -87.435379, 38.874329 ], [ -87.438984, 38.878205 ], [ -87.440701, 38.880343 ], [ -87.441902, 38.882882 ], [ -87.442589, 38.885822 ], [ -87.442589, 38.888761 ], [ -87.442074, 38.890766 ], [ -87.437611, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448254, 38.811891 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.434006, 38.872592 ], [ -87.435379, 38.874329 ], [ -87.438984, 38.878205 ], [ -87.440701, 38.880343 ], [ -87.441902, 38.882882 ], [ -87.442589, 38.885822 ], [ -87.442589, 38.888761 ], [ -87.442074, 38.890766 ], [ -87.437611, 38.902255 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 262, "y": 393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490883 ], [ -87.561636, 38.507811 ], [ -87.561035, 38.510027 ], [ -87.559834, 38.511975 ], [ -87.558117, 38.513721 ], [ -87.556057, 38.515199 ], [ -87.542839, 38.521243 ], [ -87.541809, 38.521847 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538548, 38.525809 ], [ -87.538204, 38.527622 ], [ -87.538462, 38.551186 ], [ -87.538633, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564039, 38.490883 ], [ -87.561293, 38.508483 ], [ -87.560778, 38.509826 ], [ -87.559834, 38.511505 ], [ -87.558203, 38.513385 ], [ -87.556486, 38.514661 ], [ -87.554340, 38.515736 ], [ -87.541981, 38.521511 ], [ -87.540522, 38.522518 ], [ -87.539749, 38.523324 ], [ -87.539062, 38.524130 ], [ -87.538204, 38.525876 ], [ -87.537947, 38.527756 ], [ -87.538118, 38.550246 ], [ -87.538290, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490883 ], [ -87.561636, 38.507811 ], [ -87.561035, 38.510027 ], [ -87.559834, 38.511975 ], [ -87.558117, 38.513721 ], [ -87.556057, 38.515199 ], [ -87.542839, 38.521243 ], [ -87.541809, 38.521847 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538548, 38.525809 ], [ -87.538204, 38.527622 ], [ -87.538462, 38.551186 ], [ -87.538633, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564039, 38.490883 ], [ -87.561293, 38.508483 ], [ -87.560778, 38.509826 ], [ -87.559834, 38.511505 ], [ -87.558203, 38.513385 ], [ -87.556486, 38.514661 ], [ -87.554340, 38.515736 ], [ -87.541981, 38.521511 ], [ -87.540522, 38.522518 ], [ -87.539749, 38.523324 ], [ -87.539062, 38.524130 ], [ -87.538204, 38.525876 ], [ -87.537947, 38.527756 ], [ -87.538118, 38.550246 ], [ -87.538290, 38.553535 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 262, "y": 392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538462, 38.551186 ], [ -87.538633, 38.554274 ], [ -87.538633, 38.575011 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.609024 ], [ -87.538977, 38.610566 ], [ -87.538548, 38.612042 ], [ -87.534685, 38.620827 ], [ -87.533484, 38.624180 ], [ -87.533054, 38.625722 ], [ -87.532196, 38.630349 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.550246 ], [ -87.538376, 38.555146 ], [ -87.538376, 38.574005 ], [ -87.538633, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609158 ], [ -87.538548, 38.610969 ], [ -87.538290, 38.611975 ], [ -87.533913, 38.622101 ], [ -87.533398, 38.623576 ], [ -87.532883, 38.625521 ], [ -87.532196, 38.628740 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535543, 38.619955 ], [ -87.534170, 38.623107 ], [ -87.533569, 38.625052 ], [ -87.533226, 38.627130 ], [ -87.533569, 38.628740 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538462, 38.551186 ], [ -87.538633, 38.554274 ], [ -87.538633, 38.575011 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.609024 ], [ -87.538977, 38.610566 ], [ -87.538548, 38.612042 ], [ -87.534685, 38.620827 ], [ -87.533484, 38.624180 ], [ -87.533054, 38.625722 ], [ -87.532196, 38.630349 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.550246 ], [ -87.538376, 38.555146 ], [ -87.538376, 38.574005 ], [ -87.538633, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609158 ], [ -87.538548, 38.610969 ], [ -87.538290, 38.611975 ], [ -87.533913, 38.622101 ], [ -87.533398, 38.623576 ], [ -87.532883, 38.625521 ], [ -87.532196, 38.628740 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 263, "y": 393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519832 ], [ -87.542496, 38.521444 ], [ -87.541466, 38.522115 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538548, 38.525809 ], [ -87.538204, 38.527622 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519564 ], [ -87.542839, 38.521041 ], [ -87.541466, 38.521780 ], [ -87.539749, 38.523324 ], [ -87.539062, 38.524130 ], [ -87.538204, 38.525876 ], [ -87.537947, 38.527756 ], [ -87.538118, 38.548165 ], [ -87.538290, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519832 ], [ -87.542496, 38.521444 ], [ -87.541466, 38.522115 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538548, 38.525809 ], [ -87.538204, 38.527622 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519564 ], [ -87.542839, 38.521041 ], [ -87.541466, 38.521780 ], [ -87.539749, 38.523324 ], [ -87.539062, 38.524130 ], [ -87.538204, 38.525876 ], [ -87.537947, 38.527756 ], [ -87.538118, 38.548165 ], [ -87.538290, 38.553535 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 263, "y": 392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473059, 38.759505 ], [ -87.469282, 38.768941 ], [ -87.465935, 38.778309 ], [ -87.465334, 38.780718 ], [ -87.464046, 38.789014 ], [ -87.463617, 38.790754 ], [ -87.463017, 38.792226 ], [ -87.461386, 38.794901 ], [ -87.449026, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446108, 38.816907 ], [ -87.444649, 38.822591 ], [ -87.443275, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.554274 ], [ -87.538633, 38.575011 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.609024 ], [ -87.538977, 38.610566 ], [ -87.538548, 38.612042 ], [ -87.534685, 38.620827 ], [ -87.533484, 38.624247 ], [ -87.532711, 38.627399 ], [ -87.529707, 38.644629 ], [ -87.529106, 38.646506 ], [ -87.527733, 38.648584 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.548165 ], [ -87.538376, 38.555146 ], [ -87.538376, 38.574005 ], [ -87.538633, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609963 ], [ -87.538290, 38.611975 ], [ -87.533913, 38.622101 ], [ -87.533140, 38.624448 ], [ -87.532625, 38.626661 ], [ -87.529449, 38.644495 ], [ -87.528934, 38.646171 ], [ -87.527561, 38.648316 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.488251, 38.697568 ], [ -87.486877, 38.698305 ], [ -87.486019, 38.698975 ], [ -87.485075, 38.699980 ], [ -87.484131, 38.701588 ], [ -87.483873, 38.702458 ], [ -87.483702, 38.703798 ], [ -87.484303, 38.722684 ], [ -87.482758, 38.734000 ], [ -87.482071, 38.736946 ], [ -87.469282, 38.768941 ], [ -87.466364, 38.776904 ], [ -87.465334, 38.780718 ], [ -87.463875, 38.789683 ], [ -87.463017, 38.792226 ], [ -87.461386, 38.794901 ], [ -87.449026, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446108, 38.816907 ], [ -87.444649, 38.822591 ], [ -87.443275, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493315, 38.694956 ], [ -87.487564, 38.697702 ], [ -87.486706, 38.698305 ], [ -87.485590, 38.699243 ], [ -87.484903, 38.699980 ], [ -87.484303, 38.700784 ], [ -87.483788, 38.701989 ], [ -87.483530, 38.702793 ], [ -87.483444, 38.704602 ], [ -87.484131, 38.722349 ], [ -87.482586, 38.733598 ], [ -87.481728, 38.736946 ], [ -87.468939, 38.769008 ], [ -87.466192, 38.776570 ], [ -87.464991, 38.780651 ], [ -87.463617, 38.789349 ], [ -87.462931, 38.791557 ], [ -87.462072, 38.793229 ], [ -87.461300, 38.794567 ], [ -87.448854, 38.811088 ], [ -87.447653, 38.812894 ], [ -87.446709, 38.814566 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.442932, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493315, 38.694956 ], [ -87.487564, 38.697702 ], [ -87.486706, 38.698305 ], [ -87.485590, 38.699243 ], [ -87.484903, 38.699980 ], [ -87.484303, 38.700784 ], [ -87.483788, 38.701989 ], [ -87.483530, 38.702793 ], [ -87.483444, 38.704602 ], [ -87.484131, 38.722349 ], [ -87.482586, 38.733598 ], [ -87.481728, 38.736946 ], [ -87.468939, 38.769008 ], [ -87.466192, 38.776570 ], [ -87.464991, 38.780651 ], [ -87.463617, 38.789349 ], [ -87.462931, 38.791557 ], [ -87.462072, 38.793229 ], [ -87.461300, 38.794567 ], [ -87.448854, 38.811088 ], [ -87.447653, 38.812894 ], [ -87.446709, 38.814566 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.442932, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493315, 38.694956 ], [ -87.487564, 38.697702 ], [ -87.486706, 38.698305 ], [ -87.485590, 38.699243 ], [ -87.484903, 38.699980 ], [ -87.484303, 38.700784 ], [ -87.483788, 38.701989 ], [ -87.483530, 38.702793 ], [ -87.483444, 38.704602 ], [ -87.484131, 38.722349 ], [ -87.482586, 38.733598 ], [ -87.481728, 38.736946 ], [ -87.468939, 38.769008 ], [ -87.466192, 38.776570 ], [ -87.464991, 38.780651 ], [ -87.463617, 38.789349 ], [ -87.462931, 38.791557 ], [ -87.462072, 38.793229 ], [ -87.461300, 38.794567 ], [ -87.448854, 38.811088 ], [ -87.447653, 38.812894 ], [ -87.446709, 38.814566 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.442932, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519236, 38.707415 ], [ -87.510910, 38.707884 ], [ -87.509108, 38.707884 ], [ -87.505760, 38.707482 ], [ -87.503872, 38.706946 ], [ -87.502327, 38.706410 ], [ -87.500696, 38.705539 ], [ -87.498808, 38.704267 ], [ -87.497435, 38.703061 ], [ -87.496662, 38.702056 ], [ -87.495203, 38.699712 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519236, 38.707214 ], [ -87.510996, 38.707616 ], [ -87.509108, 38.707683 ], [ -87.506704, 38.707415 ], [ -87.505417, 38.707147 ], [ -87.503099, 38.706410 ], [ -87.502155, 38.706008 ], [ -87.500782, 38.705339 ], [ -87.499237, 38.704200 ], [ -87.497778, 38.702927 ], [ -87.496576, 38.701521 ], [ -87.495546, 38.699712 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497005, 38.693281 ], [ -87.496576, 38.693415 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.497005, 38.693281 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.755020 ], [ -87.481813, 38.737683 ], [ -87.482672, 38.734603 ], [ -87.484303, 38.722684 ], [ -87.483702, 38.703798 ], [ -87.483959, 38.701922 ], [ -87.484474, 38.700918 ], [ -87.485075, 38.699980 ], [ -87.486019, 38.698975 ], [ -87.486877, 38.698305 ], [ -87.488251, 38.697568 ], [ -87.493744, 38.694889 ], [ -87.493658, 38.694822 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841663", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694822 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694822 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694822 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496576, 38.693415 ], [ -87.493658, 38.694822 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496576, 38.693415 ], [ -87.493658, 38.694822 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492800, 38.692678 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490568, 38.687654 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490568, 38.687654 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694822 ], [ -87.490568, 38.686850 ], [ -87.490311, 38.685443 ], [ -87.490139, 38.682428 ], [ -87.489882, 38.681356 ], [ -87.489109, 38.679882 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.484388, 38.678609 ], [ -87.485247, 38.679145 ], [ -87.486362, 38.680016 ], [ -87.487135, 38.680954 ], [ -87.489023, 38.684170 ], [ -87.489967, 38.686180 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509365, 38.661788 ], [ -87.503529, 38.665675 ], [ -87.491856, 38.674320 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535543, 38.619955 ], [ -87.534170, 38.623107 ], [ -87.533569, 38.625052 ], [ -87.533226, 38.627130 ], [ -87.533569, 38.628740 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672310 ], [ -87.493744, 38.673315 ], [ -87.492542, 38.674588 ], [ -87.490654, 38.677604 ], [ -87.490225, 38.678944 ], [ -87.490311, 38.685443 ], [ -87.490740, 38.687319 ], [ -87.491426, 38.689195 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674320 ], [ -87.490225, 38.675392 ], [ -87.489109, 38.676330 ], [ -87.488251, 38.677537 ], [ -87.487736, 38.678877 ], [ -87.487564, 38.679681 ], [ -87.487650, 38.681155 ], [ -87.487993, 38.682227 ], [ -87.489023, 38.684170 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.484388, 38.678609 ], [ -87.485247, 38.679145 ], [ -87.486706, 38.680351 ], [ -87.487650, 38.681758 ], [ -87.489281, 38.684773 ], [ -87.490568, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487822, 38.678542 ], [ -87.489109, 38.679882 ], [ -87.489710, 38.680954 ], [ -87.490139, 38.682428 ], [ -87.490225, 38.683701 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.484818, 38.678609 ], [ -87.486105, 38.678743 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.484818, 38.678609 ], [ -87.486105, 38.678743 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492542, 38.674655 ], [ -87.490997, 38.676732 ], [ -87.490396, 38.677335 ], [ -87.489109, 38.678073 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492542, 38.674655 ], [ -87.490997, 38.676732 ], [ -87.490396, 38.677335 ], [ -87.489109, 38.678073 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674320 ], [ -87.488937, 38.676062 ], [ -87.487650, 38.676464 ], [ -87.486620, 38.676732 ], [ -87.485676, 38.676799 ], [ -87.484131, 38.676799 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471170, 38.674722 ], [ -87.475376, 38.675057 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.554274 ], [ -87.538633, 38.575011 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.609024 ], [ -87.538977, 38.610566 ], [ -87.538548, 38.612042 ], [ -87.534685, 38.620827 ], [ -87.533484, 38.624247 ], [ -87.532711, 38.627399 ], [ -87.529707, 38.644629 ], [ -87.529106, 38.646506 ], [ -87.528076, 38.648115 ], [ -87.527218, 38.649120 ], [ -87.525759, 38.650461 ], [ -87.516575, 38.657164 ], [ -87.503357, 38.666078 ], [ -87.493744, 38.673315 ], [ -87.492542, 38.674588 ], [ -87.490654, 38.677604 ], [ -87.490225, 38.679413 ], [ -87.490311, 38.684907 ], [ -87.490482, 38.686515 ], [ -87.491426, 38.689195 ], [ -87.493658, 38.694822 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.548165 ], [ -87.538376, 38.555146 ], [ -87.538376, 38.574005 ], [ -87.538548, 38.591986 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609158 ], [ -87.538548, 38.610969 ], [ -87.538290, 38.611975 ], [ -87.533913, 38.622101 ], [ -87.533140, 38.624448 ], [ -87.532625, 38.626661 ], [ -87.529449, 38.644495 ], [ -87.529278, 38.645433 ], [ -87.528419, 38.647109 ], [ -87.527304, 38.648718 ], [ -87.526016, 38.649925 ], [ -87.516832, 38.656695 ], [ -87.509451, 38.661721 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487822, 38.678542 ], [ -87.486534, 38.677738 ], [ -87.485247, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.473917, 38.674856 ], [ -87.460957, 38.674052 ], [ -87.456923, 38.673918 ], [ -87.428083, 38.675593 ], [ -87.425251, 38.676062 ], [ -87.412634, 38.679681 ], [ -87.410660, 38.679949 ], [ -87.408943, 38.679949 ], [ -87.395897, 38.678207 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675124 ], [ -87.356844, 38.672645 ], [ -87.335300, 38.668289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487822, 38.678542 ], [ -87.486534, 38.677738 ], [ -87.485247, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.473917, 38.674856 ], [ -87.460957, 38.674052 ], [ -87.456923, 38.673918 ], [ -87.428083, 38.675593 ], [ -87.425251, 38.676062 ], [ -87.412634, 38.679681 ], [ -87.410660, 38.679949 ], [ -87.408943, 38.679949 ], [ -87.395897, 38.678207 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675124 ], [ -87.356844, 38.672645 ], [ -87.335300, 38.668289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335043, 38.668490 ], [ -87.371178, 38.675660 ], [ -87.374268, 38.676129 ], [ -87.395811, 38.678408 ], [ -87.402849, 38.679413 ], [ -87.409201, 38.680150 ], [ -87.410831, 38.680150 ], [ -87.412720, 38.679882 ], [ -87.425079, 38.676330 ], [ -87.427654, 38.675861 ], [ -87.455292, 38.674186 ], [ -87.458725, 38.674119 ], [ -87.460957, 38.674253 ], [ -87.473230, 38.675057 ], [ -87.475376, 38.675459 ], [ -87.476664, 38.675794 ], [ -87.481556, 38.677537 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.476664, 38.675794 ], [ -87.475376, 38.675459 ], [ -87.473230, 38.675057 ], [ -87.460957, 38.674253 ], [ -87.458725, 38.674119 ], [ -87.455292, 38.674186 ], [ -87.427654, 38.675861 ], [ -87.425079, 38.676330 ], [ -87.412720, 38.679882 ], [ -87.410831, 38.680150 ], [ -87.409201, 38.680150 ], [ -87.402849, 38.679413 ], [ -87.395811, 38.678408 ], [ -87.374268, 38.676129 ], [ -87.371178, 38.675660 ], [ -87.335043, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324314, 38.665072 ], [ -87.317362, 38.661721 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274961, 38.646439 ], [ -87.283630, 38.647914 ], [ -87.285862, 38.648383 ], [ -87.289467, 38.649388 ], [ -87.293415, 38.650729 ], [ -87.297535, 38.652673 ], [ -87.325430, 38.665810 ], [ -87.329292, 38.667217 ], [ -87.335043, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274961, 38.646439 ], [ -87.283630, 38.647914 ], [ -87.285862, 38.648383 ], [ -87.289467, 38.649388 ], [ -87.293415, 38.650729 ], [ -87.297535, 38.652673 ], [ -87.325430, 38.665810 ], [ -87.329292, 38.667217 ], [ -87.335043, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668289 ], [ -87.331781, 38.667619 ], [ -87.329121, 38.666949 ], [ -87.326374, 38.665944 ], [ -87.316246, 38.661252 ], [ -87.295218, 38.651265 ], [ -87.290583, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647377 ], [ -87.274876, 38.646238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668289 ], [ -87.331781, 38.667619 ], [ -87.329121, 38.666949 ], [ -87.326374, 38.665944 ], [ -87.316246, 38.661252 ], [ -87.295218, 38.651265 ], [ -87.290583, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647377 ], [ -87.274876, 38.646238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281313, 38.648450 ], [ -87.283115, 38.649724 ], [ -87.283974, 38.650260 ], [ -87.285347, 38.650863 ], [ -87.286978, 38.651332 ], [ -87.292042, 38.652338 ], [ -87.294359, 38.653142 ], [ -87.296247, 38.654282 ], [ -87.298737, 38.656225 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251787, 38.646640 ], [ -87.265005, 38.645769 ], [ -87.267151, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.279596, 38.647243 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251787, 38.646640 ], [ -87.266378, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.274961, 38.646439 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251787, 38.646640 ], [ -87.266378, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.274961, 38.646439 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271700, 38.645769 ], [ -87.265434, 38.645501 ], [ -87.251616, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271700, 38.645769 ], [ -87.265434, 38.645501 ], [ -87.251616, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251616, 38.646372 ], [ -87.265434, 38.645501 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 263, "y": 391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.446022, 38.817241 ], [ -87.444649, 38.822591 ], [ -87.433662, 38.865976 ], [ -87.433319, 38.867714 ], [ -87.433319, 38.868984 ], [ -87.433491, 38.870186 ], [ -87.433920, 38.871590 ], [ -87.434521, 38.872726 ], [ -87.435808, 38.874530 ], [ -87.439413, 38.878272 ], [ -87.440786, 38.880143 ], [ -87.442160, 38.882815 ], [ -87.442846, 38.885621 ], [ -87.442846, 38.888093 ], [ -87.442331, 38.890766 ], [ -87.437868, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832153 ], [ -87.449112, 38.833022 ], [ -87.446795, 38.847930 ], [ -87.446280, 38.848933 ], [ -87.444477, 38.852008 ], [ -87.444391, 38.852542 ], [ -87.444477, 38.852943 ], [ -87.444820, 38.853478 ], [ -87.447824, 38.855417 ], [ -87.448339, 38.856152 ], [ -87.447996, 38.863036 ], [ -87.447653, 38.864372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.446022, 38.817241 ], [ -87.444649, 38.822591 ], [ -87.433662, 38.865976 ], [ -87.433319, 38.867714 ], [ -87.433319, 38.868984 ], [ -87.433491, 38.870186 ], [ -87.433920, 38.871590 ], [ -87.434521, 38.872726 ], [ -87.435808, 38.874530 ], [ -87.439413, 38.878272 ], [ -87.440786, 38.880143 ], [ -87.442160, 38.882815 ], [ -87.442846, 38.885621 ], [ -87.442846, 38.888093 ], [ -87.442331, 38.890766 ], [ -87.437868, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.445679, 38.817241 ], [ -87.444305, 38.822591 ], [ -87.433405, 38.865642 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.433491, 38.871256 ], [ -87.434006, 38.872525 ], [ -87.435293, 38.874329 ], [ -87.438984, 38.878138 ], [ -87.440615, 38.880276 ], [ -87.441816, 38.882815 ], [ -87.442245, 38.884152 ], [ -87.442503, 38.885822 ], [ -87.442503, 38.888695 ], [ -87.442074, 38.890699 ], [ -87.437525, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.445679, 38.817241 ], [ -87.444305, 38.822591 ], [ -87.433405, 38.865642 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.433491, 38.871256 ], [ -87.434006, 38.872525 ], [ -87.435293, 38.874329 ], [ -87.438984, 38.878138 ], [ -87.440615, 38.880276 ], [ -87.441816, 38.882815 ], [ -87.442245, 38.884152 ], [ -87.442503, 38.885822 ], [ -87.442503, 38.888695 ], [ -87.442074, 38.890699 ], [ -87.437525, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.445679, 38.817241 ], [ -87.444305, 38.822591 ], [ -87.433405, 38.865642 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.433491, 38.871256 ], [ -87.434006, 38.872525 ], [ -87.435293, 38.874329 ], [ -87.438984, 38.878138 ], [ -87.440615, 38.880276 ], [ -87.441816, 38.882815 ], [ -87.442245, 38.884152 ], [ -87.442503, 38.885822 ], [ -87.442503, 38.888695 ], [ -87.442074, 38.890699 ], [ -87.437525, 38.902255 ] ] } } +] } +] } +] }