diff --git a/README.md b/README.md index 3a561d8..59f3ef3 100644 --- a/README.md +++ b/README.md @@ -470,6 +470,7 @@ the same layer, enclose them in an `all` expression so they will all be evaluate the line or polygon within one tile unit of its proper location. You can probably go up to about 10 without too much visible difference. * `-ps` or `--no-line-simplification`: Don't simplify lines and polygons * `-pS` or `--simplify-only-low-zooms`: Don't simplify lines and polygons at maxzoom (but do simplify at lower zooms) + * `-pn` or `--no-simplification-of-shared-nodes`: Don't simplify away nodes that appear in more than one feature or are used multiple times within the same feature, so that the intersection node will not be lost from intersecting roads. (This will not be effective if you also use `--coalesce` or `--detect-shared-borders`.) * `-pt` or `--no-tiny-polygon-reduction`: Don't combine the area of very small polygons into small squares that represent their combined area. ### Attempts to improve shared polygon boundaries diff --git a/geometry.cpp b/geometry.cpp index 15704ef..7cb6cf1 100644 --- a/geometry.cpp +++ b/geometry.cpp @@ -802,7 +802,7 @@ drawvec impose_tile_boundaries(drawvec &geom, long long extent) { return out; } -drawvec simplify_lines(drawvec &geom, int z, int detail, bool mark_tile_bounds, double simplification, size_t retain) { +drawvec simplify_lines(drawvec &geom, int z, int detail, bool mark_tile_bounds, double simplification, size_t retain, drawvec const &shared_nodes) { int res = 1 << (32 - detail - z); long long area = 1LL << (32 - z); @@ -814,6 +814,13 @@ drawvec simplify_lines(drawvec &geom, int z, int detail, bool mark_tile_bounds, } else { geom[i].necessary = 1; } + + if (prevent[P_SIMPLIFY_SHARED_NODES]) { + auto pt = std::lower_bound(shared_nodes.begin(), shared_nodes.end(), geom[i]); + if (pt != shared_nodes.end() && *pt == geom[i]) { + geom[i].necessary = true; + } + } } if (mark_tile_bounds) { diff --git a/geometry.hpp b/geometry.hpp index 1e45a0b..79b8f47 100644 --- a/geometry.hpp +++ b/geometry.hpp @@ -68,7 +68,7 @@ drawvec clip_lines(drawvec &geom, int z, long long buffer); drawvec stairstep(drawvec &geom, int z, int detail); bool point_within_tile(long long x, long long y, int z); int quick_check(long long *bbox, int z, long long buffer); -drawvec simplify_lines(drawvec &geom, int z, int detail, bool mark_tile_bounds, double simplification, size_t retain); +drawvec simplify_lines(drawvec &geom, int z, int detail, bool mark_tile_bounds, double simplification, size_t retain, drawvec const &shared_nodes); drawvec reorder_lines(drawvec &geom); drawvec fix_polygon(drawvec &geom); std::vector chop_polygon(std::vector &geoms); diff --git a/main.cpp b/main.cpp index 8d7cb9a..ae41d82 100644 --- a/main.cpp +++ b/main.cpp @@ -2569,6 +2569,7 @@ int main(int argc, char **argv) { {"no-line-simplification", no_argument, &prevent[P_SIMPLIFY], 1}, {"simplify-only-low-zooms", no_argument, &prevent[P_SIMPLIFY_LOW], 1}, {"no-tiny-polygon-reduction", no_argument, &prevent[P_TINY_POLYGON_REDUCTION], 1}, + {"no-simplification-of-shared-nodes", no_argument, &prevent[P_SIMPLIFY_SHARED_NODES], 1}, {"Attempts to improve shared polygon boundaries", 0, 0, 0}, {"detect-shared-borders", no_argument, &additional[A_DETECT_SHARED_BORDERS], 1}, diff --git a/options.hpp b/options.hpp index e801bf0..93336d7 100644 --- a/options.hpp +++ b/options.hpp @@ -28,6 +28,7 @@ #define P_SIMPLIFY ((int) 's') #define P_SIMPLIFY_LOW ((int) 'S') +#define P_SIMPLIFY_SHARED_NODES ((int) 'n') #define P_FEATURE_LIMIT ((int) 'f') #define P_KILOBYTE_LIMIT ((int) 'k') #define P_DYNAMIC_DROP ((int) 'd') diff --git a/tests/tl_2018_51685_roads/in.json b/tests/tl_2018_51685_roads/in.json new file mode 100644 index 0000000..c5e061f --- /dev/null +++ b/tests/tl_2018_51685_roads/in.json @@ -0,0 +1,263 @@ +{ +"type": "FeatureCollection", +"name": "tl_2018_51685_roads", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4269" } }, +"features": [ +{ "type": "Feature", "properties": { "LINEARID": "1103679538189", "FULLNAME": "Old Centreville Rd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.458507, 38.787394 ], [ -77.458575, 38.786812 ], [ -77.45858, 38.786772 ], [ -77.458642, 38.786275 ], [ -77.458729, 38.785587 ], [ -77.458834, 38.784767 ], [ -77.458927, 38.783965 ], [ -77.458952, 38.78375 ], [ -77.458974, 38.783532 ], [ -77.459003, 38.783237 ], [ -77.459035, 38.782899 ], [ -77.459083, 38.78228 ], [ -77.459115, 38.781859 ], [ -77.459171, 38.781148 ], [ -77.459249, 38.780446 ], [ -77.459436, 38.778963 ], [ -77.459499, 38.778395 ], [ -77.459488, 38.778323 ], [ -77.45946, 38.778253 ], [ -77.459432, 38.778209 ], [ -77.45937, 38.778143 ], [ -77.4593, 38.778094 ], [ -77.456905, 38.776756 ], [ -77.454755, 38.775544 ], [ -77.454437, 38.775365 ], [ -77.453621, 38.774891 ], [ -77.453132, 38.774571 ], [ -77.452981, 38.774454 ], [ -77.452817, 38.774301 ], [ -77.452715, 38.774182 ], [ -77.452654, 38.774084 ], [ -77.452611, 38.77398 ], [ -77.452585, 38.773874 ], [ -77.452577, 38.773765 ], [ -77.452556, 38.77363 ], [ -77.452539, 38.773582 ], [ -77.452532, 38.77356 ], [ -77.452514, 38.773526 ], [ -77.452485, 38.773495 ], [ -77.452442, 38.773475 ], [ -77.452349, 38.773462 ], [ -77.452262, 38.773445 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477291", "FULLNAME": "S Whitt Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428662, 38.755834 ], [ -77.428525, 38.756162 ], [ -77.428248, 38.756773 ], [ -77.428165, 38.75691 ], [ -77.428064, 38.757041 ], [ -77.427947, 38.757163 ], [ -77.427824, 38.757282 ], [ -77.427741, 38.757386 ], [ -77.427675, 38.757497 ], [ -77.427558, 38.757789 ], [ -77.427367, 38.758271 ], [ -77.427259, 38.758572 ], [ -77.427108, 38.759001 ], [ -77.427077, 38.759148 ], [ -77.427065, 38.759296 ], [ -77.427072, 38.759516 ], [ -77.427085, 38.759862 ], [ -77.427103, 38.760679 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477443", "FULLNAME": "E Carondelet Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430911, 38.760992 ], [ -77.430179, 38.760708 ], [ -77.429786, 38.760559 ], [ -77.429498, 38.760423 ], [ -77.429221, 38.760274 ], [ -77.428315, 38.759796 ], [ -77.42808, 38.759694 ], [ -77.427885, 38.759622 ], [ -77.42764, 38.759566 ], [ -77.427491, 38.759539 ], [ -77.427273, 38.759521 ], [ -77.427072, 38.759516 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536124", "FULLNAME": "W Carondelet Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436898, 38.765563 ], [ -77.436515, 38.765346 ], [ -77.436382, 38.765249 ], [ -77.435733, 38.764989 ], [ -77.435416, 38.764819 ], [ -77.435319, 38.764768 ], [ -77.434965, 38.764566 ], [ -77.434483, 38.764281 ], [ -77.434234, 38.764129 ], [ -77.434083, 38.763984 ], [ -77.433972, 38.763878 ], [ -77.43385, 38.763713 ], [ -77.43377, 38.763561 ], [ -77.433741, 38.763487 ], [ -77.433392, 38.762584 ], [ -77.433299, 38.762371 ], [ -77.433223, 38.762241 ], [ -77.43313, 38.762119 ], [ -77.433046, 38.762026 ], [ -77.432926, 38.761914 ], [ -77.432823, 38.761828 ], [ -77.432642, 38.761699 ], [ -77.432457, 38.761594 ], [ -77.432292, 38.761516 ], [ -77.432214, 38.761484 ], [ -77.431042, 38.761044 ], [ -77.430911, 38.760992 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477307", "FULLNAME": "Crozet St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.455702, 38.774851 ], [ -77.455749, 38.774821 ], [ -77.455778, 38.774795 ], [ -77.456184, 38.774337 ], [ -77.45645, 38.774045 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477280", "FULLNAME": "Price Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.458877, 38.774182 ], [ -77.458999, 38.774055 ], [ -77.4591, 38.773913 ], [ -77.459169, 38.773785 ], [ -77.45922, 38.773651 ], [ -77.459251, 38.773523 ], [ -77.459265, 38.773394 ], [ -77.459251, 38.773011 ], [ -77.459238, 38.772698 ], [ -77.459232, 38.772666 ], [ -77.459226, 38.772648 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477515", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.45916, 38.772598 ], [ -77.459204, 38.772623 ], [ -77.459226, 38.772648 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477377", "FULLNAME": "Hardees Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.454268, 38.770769 ], [ -77.453406, 38.770646 ], [ -77.45293, 38.770587 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1102214409896", "FULLNAME": "Centreville Rd", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452262, 38.773445 ], [ -77.452322, 38.773224 ], [ -77.452506, 38.772405 ], [ -77.45266, 38.771722 ], [ -77.452857, 38.770876 ], [ -77.45293, 38.770587 ], [ -77.452994, 38.77038 ], [ -77.45309, 38.77013 ], [ -77.453218, 38.769849 ], [ -77.45338, 38.769559 ], [ -77.453499, 38.76937 ], [ -77.453707, 38.76909 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1102214411210", "FULLNAME": "State Rte 28", "RTTYP": "S", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452262, 38.773445 ], [ -77.452322, 38.773224 ], [ -77.452506, 38.772405 ], [ -77.45266, 38.771722 ], [ -77.452857, 38.770876 ], [ -77.45293, 38.770587 ], [ -77.452994, 38.77038 ], [ -77.45309, 38.77013 ], [ -77.453218, 38.769849 ], [ -77.45338, 38.769559 ], [ -77.453499, 38.76937 ], [ -77.453707, 38.76909 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477256", "FULLNAME": "Brian Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448814, 38.76692 ], [ -77.449142, 38.76655 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477217", "FULLNAME": "State Rte 28", "RTTYP": "S", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.4521, 38.773417 ], [ -77.452286, 38.772609 ], [ -77.452341, 38.772372 ], [ -77.452442, 38.771884 ], [ -77.452489, 38.771693 ], [ -77.452584, 38.771324 ], [ -77.452728, 38.770689 ], [ -77.452782, 38.770506 ], [ -77.452886, 38.770232 ], [ -77.452991, 38.769999 ], [ -77.453086, 38.769816 ], [ -77.453259, 38.769509 ], [ -77.45337, 38.769343 ], [ -77.453591, 38.769031 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477427", "FULLNAME": "Wilcoxen Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435683, 38.763097 ], [ -77.435363, 38.763 ], [ -77.435296, 38.762973 ], [ -77.435211, 38.76293 ], [ -77.43503, 38.762818 ], [ -77.434899, 38.76276 ], [ -77.434816, 38.762731 ], [ -77.434258, 38.76256 ], [ -77.434152, 38.762539 ], [ -77.434065, 38.762533 ], [ -77.433952, 38.762531 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477438", "FULLNAME": "Stephanie St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.42775, 38.765373 ], [ -77.427261, 38.765304 ], [ -77.427145, 38.765284 ], [ -77.426955, 38.76524 ], [ -77.426771, 38.765183 ], [ -77.426665, 38.765142 ], [ -77.42651, 38.765071 ], [ -77.426329, 38.764965 ], [ -77.426169, 38.764846 ], [ -77.425999, 38.764687 ], [ -77.425839, 38.764534 ], [ -77.425755, 38.764463 ], [ -77.425536, 38.764294 ], [ -77.425297, 38.764148 ], [ -77.425211, 38.764095 ], [ -77.425128, 38.764053 ], [ -77.424916, 38.763956 ], [ -77.42474, 38.763888 ], [ -77.424513, 38.763815 ], [ -77.424379, 38.763782 ], [ -77.424158, 38.763742 ], [ -77.423888, 38.763712 ], [ -77.423662, 38.763703 ], [ -77.42336, 38.76371 ], [ -77.423212, 38.763721 ], [ -77.423102, 38.763736 ], [ -77.422921, 38.763771 ], [ -77.422337, 38.763924 ], [ -77.421922, 38.76404 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536656", "FULLNAME": "Brandon St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429703, 38.761481 ], [ -77.429162, 38.761268 ], [ -77.429034, 38.761204 ], [ -77.428531, 38.760897 ], [ -77.428384, 38.760828 ], [ -77.428228, 38.760771 ], [ -77.428066, 38.760728 ], [ -77.427866, 38.760696 ], [ -77.427664, 38.76068 ], [ -77.427103, 38.760679 ], [ -77.426995, 38.760679 ], [ -77.426707, 38.760689 ], [ -77.426491, 38.760682 ], [ -77.426277, 38.760662 ], [ -77.426084, 38.760631 ], [ -77.425793, 38.760562 ], [ -77.425529, 38.760484 ], [ -77.424749, 38.760207 ], [ -77.424738, 38.760203 ], [ -77.424704, 38.760169 ], [ -77.424686, 38.760129 ], [ -77.424686, 38.760087 ], [ -77.424702, 38.760046 ], [ -77.424786, 38.759914 ], [ -77.424801, 38.759856 ], [ -77.424797, 38.759796 ], [ -77.424786, 38.759762 ], [ -77.42465, 38.75948 ], [ -77.424602, 38.759421 ], [ -77.424528, 38.759356 ], [ -77.424444, 38.759306 ], [ -77.42431, 38.75925 ], [ -77.424225, 38.759223 ], [ -77.424031, 38.759175 ], [ -77.423922, 38.759167 ], [ -77.423813, 38.759174 ], [ -77.423476, 38.75926 ], [ -77.423424, 38.759287 ], [ -77.423391, 38.759317 ], [ -77.423362, 38.75936 ], [ -77.423353, 38.759389 ], [ -77.4233, 38.759686 ], [ -77.423211, 38.760187 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103677851474", "FULLNAME": "Liberty St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442336, 38.765756 ], [ -77.442665, 38.765751 ], [ -77.443608, 38.765853 ], [ -77.443679, 38.765866 ], [ -77.443767, 38.765874 ], [ -77.443825, 38.765879 ], [ -77.443914, 38.765897 ], [ -77.44398, 38.765924 ], [ -77.444044, 38.765954 ], [ -77.444122, 38.765996 ], [ -77.444188, 38.766043 ], [ -77.444238, 38.766079 ], [ -77.444319, 38.766135 ], [ -77.444364, 38.766168 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477232", "FULLNAME": "Jack Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430695, 38.767109 ], [ -77.430471, 38.766941 ], [ -77.430317, 38.766853 ], [ -77.430153, 38.766776 ], [ -77.429981, 38.766712 ], [ -77.429802, 38.766662 ], [ -77.429617, 38.766626 ], [ -77.429466, 38.766608 ], [ -77.428902, 38.766592 ], [ -77.428596, 38.766563 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678292796", "FULLNAME": "Russia Branch View Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440552, 38.763992 ], [ -77.440333, 38.763995 ], [ -77.440229, 38.764004 ], [ -77.440118, 38.76403 ], [ -77.440051, 38.764056 ], [ -77.439786, 38.764191 ], [ -77.439499, 38.764338 ], [ -77.439398, 38.764365 ], [ -77.439193, 38.764357 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477512", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432823, 38.761828 ], [ -77.433015, 38.761664 ], [ -77.433101, 38.761554 ], [ -77.433231, 38.761333 ], [ -77.433233, 38.761299 ], [ -77.433216, 38.761267 ], [ -77.433192, 38.761247 ], [ -77.432932, 38.761144 ], [ -77.432581, 38.761016 ], [ -77.432539, 38.761016 ], [ -77.432502, 38.761029 ], [ -77.432474, 38.761054 ], [ -77.432337, 38.761286 ], [ -77.432214, 38.761484 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477391", "FULLNAME": "Michael Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429045, 38.762329 ], [ -77.428726, 38.762125 ], [ -77.428407, 38.761934 ], [ -77.428083, 38.76175 ], [ -77.427947, 38.761687 ], [ -77.427772, 38.761628 ], [ -77.427651, 38.761599 ], [ -77.427419, 38.761586 ], [ -77.427117, 38.761586 ], [ -77.427051, 38.761586 ], [ -77.426831, 38.761608 ], [ -77.426754, 38.761628 ], [ -77.426698, 38.761653 ], [ -77.426636, 38.761695 ], [ -77.426573, 38.761769 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477365", "FULLNAME": "Bradley Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426706, 38.763447 ], [ -77.426679, 38.76328 ], [ -77.426665, 38.763235 ], [ -77.426617, 38.763151 ], [ -77.426573, 38.763099 ], [ -77.426444, 38.762974 ], [ -77.426425, 38.76296 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477332", "FULLNAME": "Moseby Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.468551, 38.778052 ], [ -77.468599, 38.777998 ], [ -77.468634, 38.777971 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477334", "FULLNAME": "Moseby Ct", "RTTYP": "M", "MTFCC": "S1500" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.469766, 38.779297 ], [ -77.469584, 38.779228 ], [ -77.469471, 38.779178 ], [ -77.469323, 38.779099 ], [ -77.469159, 38.77899 ], [ -77.469034, 38.778886 ], [ -77.468944, 38.778796 ], [ -77.468864, 38.778699 ], [ -77.468725, 38.778505 ], [ -77.468589, 38.778286 ], [ -77.468536, 38.778192 ], [ -77.468526, 38.778149 ], [ -77.468531, 38.778095 ], [ -77.468551, 38.778052 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477531", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444875, 38.770495 ], [ -77.444725, 38.770412 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477271", "FULLNAME": "Lapaz Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447189, 38.767956 ], [ -77.447653, 38.768217 ], [ -77.448016, 38.768418 ], [ -77.448116, 38.768495 ], [ -77.448185, 38.768568 ], [ -77.448213, 38.768609 ], [ -77.448252, 38.768693 ], [ -77.448277, 38.76879 ], [ -77.448283, 38.768889 ], [ -77.44827, 38.768988 ], [ -77.448212, 38.769107 ], [ -77.448136, 38.76922 ], [ -77.448064, 38.769305 ], [ -77.447863, 38.76951 ], [ -77.447555, 38.769824 ], [ -77.447517, 38.769847 ], [ -77.447462, 38.769865 ], [ -77.447349, 38.769873 ], [ -77.44726, 38.769894 ], [ -77.447184, 38.769919 ], [ -77.447159, 38.769923 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477289", "FULLNAME": "Swann Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.45057, 38.767823 ], [ -77.449964, 38.767494 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477525", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438699, 38.78053 ], [ -77.438274, 38.780139 ], [ -77.438062, 38.779973 ], [ -77.437865, 38.779797 ], [ -77.437848, 38.77978 ], [ -77.437741, 38.779674 ], [ -77.437693, 38.779642 ], [ -77.437638, 38.779617 ], [ -77.437578, 38.7796 ], [ -77.437531, 38.779593 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536695", "FULLNAME": "Denver Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.469608, 38.784044 ], [ -77.469614, 38.784192 ], [ -77.469603, 38.784343 ], [ -77.469575, 38.784443 ], [ -77.469538, 38.784519 ], [ -77.469467, 38.78462 ], [ -77.469376, 38.784715 ], [ -77.469012, 38.785054 ], [ -77.468785, 38.785265 ], [ -77.468468, 38.785556 ], [ -77.468302, 38.785693 ], [ -77.468154, 38.7858 ], [ -77.468042, 38.785868 ], [ -77.467756, 38.786025 ], [ -77.467542, 38.78613 ], [ -77.467443, 38.786184 ], [ -77.466718, 38.786571 ], [ -77.46655, 38.786657 ], [ -77.466379, 38.786744 ], [ -77.46603, 38.786934 ], [ -77.465916, 38.787009 ], [ -77.465862, 38.787049 ], [ -77.465761, 38.78715 ], [ -77.465651, 38.787285 ], [ -77.46562, 38.787329 ], [ -77.465538, 38.787467 ], [ -77.465512, 38.787521 ], [ -77.465488, 38.787614 ], [ -77.465467, 38.787697 ], [ -77.465441, 38.787881 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105045621658", "FULLNAME": "Kirby St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.464605, 38.776549 ], [ -77.464818, 38.77646 ], [ -77.464914, 38.776423 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105533753133", "FULLNAME": "Corbett Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434354, 38.768608 ], [ -77.435211, 38.76838 ], [ -77.435811, 38.768265 ], [ -77.43587, 38.768132 ], [ -77.436061, 38.767707 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536111", "FULLNAME": "Russia Branch View Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439193, 38.764357 ], [ -77.439065, 38.76482 ], [ -77.438444, 38.765325 ], [ -77.43783, 38.765927 ], [ -77.437771, 38.765927 ], [ -77.437681, 38.765896 ], [ -77.437667, 38.765826 ], [ -77.437556, 38.765708 ], [ -77.43738, 38.765495 ], [ -77.437187, 38.765323 ], [ -77.43689, 38.765263 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679538309", "FULLNAME": "Rugby Rd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.458507, 38.787394 ], [ -77.458582, 38.787405 ], [ -77.459736, 38.787494 ], [ -77.460013, 38.787515 ], [ -77.460861, 38.787566 ], [ -77.461719, 38.787629 ], [ -77.465441, 38.787881 ], [ -77.468301, 38.78807 ], [ -77.470038, 38.788185 ], [ -77.471184, 38.788273 ], [ -77.472365, 38.788348 ], [ -77.472972, 38.788391 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477300", "FULLNAME": "Colfax Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.471281, 38.782981 ], [ -77.471485, 38.78326 ], [ -77.471604, 38.783458 ], [ -77.471687, 38.783621 ], [ -77.471702, 38.783669 ], [ -77.471732, 38.783821 ], [ -77.471742, 38.783966 ], [ -77.471732, 38.78427 ], [ -77.471662, 38.785022 ], [ -77.471599, 38.785764 ], [ -77.47154, 38.786343 ], [ -77.471559, 38.786441 ], [ -77.471587, 38.786517 ], [ -77.471639, 38.786608 ], [ -77.471735, 38.786723 ], [ -77.471864, 38.78685 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477273", "FULLNAME": "Luxor St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.462936, 38.78545 ], [ -77.463905, 38.786582 ], [ -77.463971, 38.78669 ], [ -77.46401, 38.786783 ], [ -77.46404, 38.786912 ], [ -77.464051, 38.787043 ], [ -77.464035, 38.787225 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477539", "FULLNAME": "Park Center Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442382, 38.766709 ], [ -77.441947, 38.766731 ], [ -77.441563, 38.766764 ], [ -77.44138, 38.76679 ], [ -77.441202, 38.76683 ], [ -77.441097, 38.76686 ], [ -77.440929, 38.766921 ], [ -77.44064, 38.767048 ], [ -77.440311, 38.767241 ], [ -77.440187, 38.767323 ], [ -77.439288, 38.767871 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679537849", "FULLNAME": "Elm Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438867, 38.762093 ], [ -77.439026, 38.76214 ], [ -77.439201, 38.762226 ], [ -77.439299, 38.762274 ], [ -77.43936, 38.762306 ], [ -77.439421, 38.76234 ], [ -77.439477, 38.762379 ], [ -77.439531, 38.762408 ], [ -77.439601, 38.762425 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106073064085", "FULLNAME": "Blooms Quarry Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.4521, 38.773417 ], [ -77.451845, 38.7734 ], [ -77.451762, 38.773401 ], [ -77.451724, 38.773406 ], [ -77.451637, 38.773407 ], [ -77.451324, 38.773444 ], [ -77.451193, 38.77348 ], [ -77.450863, 38.773634 ], [ -77.450804, 38.773655 ], [ -77.450687, 38.773675 ], [ -77.45055, 38.773686 ], [ -77.450266, 38.773705 ], [ -77.449952, 38.77365 ], [ -77.4499, 38.773626 ], [ -77.449342, 38.773371 ], [ -77.448149, 38.772854 ], [ -77.447605, 38.772596 ], [ -77.447595, 38.772589 ], [ -77.447306, 38.772374 ], [ -77.447053, 38.772181 ], [ -77.446793, 38.771992 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477285", "FULLNAME": "Sonia Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425361, 38.765801 ], [ -77.425316, 38.765433 ], [ -77.425279, 38.765327 ], [ -77.425241, 38.765259 ], [ -77.42518, 38.76518 ], [ -77.425105, 38.76511 ], [ -77.424672, 38.764813 ], [ -77.424482, 38.764706 ], [ -77.424378, 38.764658 ], [ -77.42424, 38.764611 ], [ -77.424022, 38.764557 ], [ -77.423857, 38.764533 ], [ -77.42369, 38.764523 ], [ -77.423399, 38.764529 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477278", "FULLNAME": "Paige Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426021, 38.765589 ], [ -77.426254, 38.7658 ], [ -77.426361, 38.765903 ], [ -77.426436, 38.765953 ], [ -77.426522, 38.76599 ], [ -77.426578, 38.766006 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678606039", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433392, 38.762584 ], [ -77.433082, 38.762654 ], [ -77.432949, 38.762669 ], [ -77.432808, 38.762667 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678606144", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432214, 38.761484 ], [ -77.432089, 38.761687 ], [ -77.431974, 38.761892 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081861038", "FULLNAME": "Belo Gate Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437562, 38.763598 ], [ -77.437051, 38.763476 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477517", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.463571, 38.779416 ], [ -77.463855, 38.779097 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477314", "FULLNAME": "Holden Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.460696, 38.786628 ], [ -77.460809, 38.786744 ], [ -77.460907, 38.786831 ], [ -77.46103, 38.786918 ], [ -77.461121, 38.786967 ], [ -77.461196, 38.786998 ], [ -77.461336, 38.787035 ], [ -77.46148, 38.787058 ], [ -77.462558, 38.78712 ], [ -77.463042, 38.787158 ], [ -77.464035, 38.787225 ], [ -77.46562, 38.787329 ], [ -77.468427, 38.787524 ], [ -77.470101, 38.787634 ], [ -77.470484, 38.78766 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477419", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452489, 38.771693 ], [ -77.452476, 38.771672 ], [ -77.452444, 38.771639 ], [ -77.452391, 38.771603 ], [ -77.452342, 38.771584 ], [ -77.452009, 38.771524 ], [ -77.451723, 38.771477 ], [ -77.451202, 38.77139 ], [ -77.45092, 38.771357 ], [ -77.449891, 38.771253 ], [ -77.449387, 38.771187 ], [ -77.449205, 38.771157 ], [ -77.448752, 38.771068 ], [ -77.448305, 38.770963 ], [ -77.44797, 38.770874 ], [ -77.447763, 38.77081 ], [ -77.447426, 38.770693 ], [ -77.447247, 38.770621 ], [ -77.447024, 38.770514 ], [ -77.446811, 38.770395 ], [ -77.446478, 38.770179 ], [ -77.445738, 38.769677 ], [ -77.44566, 38.769628 ], [ -77.445531, 38.769551 ], [ -77.445004, 38.76925 ], [ -77.444609, 38.769039 ], [ -77.444032, 38.768759 ], [ -77.443851, 38.768686 ], [ -77.443739, 38.768648 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477435", "FULLNAME": "Sandstone Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449059, 38.772688 ], [ -77.449511, 38.772203 ], [ -77.449653, 38.772043 ], [ -77.449729, 38.771946 ], [ -77.449779, 38.771857 ], [ -77.449803, 38.771796 ], [ -77.449827, 38.771696 ], [ -77.449832, 38.771595 ], [ -77.44986, 38.77143 ], [ -77.449891, 38.771253 ], [ -77.449963, 38.770864 ], [ -77.449988, 38.770726 ], [ -77.450008, 38.770646 ], [ -77.450041, 38.770569 ], [ -77.450098, 38.770477 ], [ -77.450375, 38.770145 ], [ -77.450418, 38.770106 ], [ -77.450448, 38.770066 ], [ -77.450503, 38.769994 ], [ -77.450601, 38.769849 ], [ -77.450637, 38.769755 ], [ -77.450657, 38.769658 ], [ -77.450666, 38.769385 ], [ -77.450689, 38.769309 ], [ -77.450729, 38.769237 ], [ -77.451017, 38.768927 ], [ -77.451525, 38.768378 ], [ -77.451808, 38.76807 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081513527", "FULLNAME": "Conner Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448507, 38.766147 ], [ -77.44855, 38.766171 ], [ -77.448591, 38.766226 ], [ -77.448631, 38.766262 ], [ -77.448659, 38.766278 ], [ -77.449142, 38.76655 ], [ -77.449834, 38.76694 ], [ -77.450101, 38.76709 ], [ -77.450471, 38.767309 ], [ -77.450861, 38.767525 ], [ -77.451544, 38.767914 ], [ -77.451808, 38.76807 ], [ -77.452156, 38.768272 ], [ -77.452466, 38.768429 ], [ -77.453001, 38.768699 ], [ -77.453142, 38.768793 ], [ -77.453328, 38.768901 ], [ -77.453591, 38.769031 ], [ -77.453707, 38.76909 ], [ -77.4539, 38.769189 ], [ -77.454035, 38.769251 ], [ -77.454646, 38.769485 ], [ -77.454842, 38.769565 ], [ -77.455013, 38.769635 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477323", "FULLNAME": "Martin Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.466891, 38.780188 ], [ -77.466616, 38.780217 ], [ -77.465827, 38.780285 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105045621656", "FULLNAME": "Kirby St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.464914, 38.776423 ], [ -77.465245, 38.776395 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477240", "FULLNAME": "Park Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.461234, 38.784942 ], [ -77.460581, 38.785277 ], [ -77.460448, 38.785342 ], [ -77.460308, 38.785398 ], [ -77.46016, 38.785437 ], [ -77.460047, 38.785459 ], [ -77.459849, 38.785481 ], [ -77.459281, 38.785565 ], [ -77.459167, 38.785578 ], [ -77.458875, 38.785587 ], [ -77.458729, 38.785587 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477356", "FULLNAME": "Scotty Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436835, 38.760961 ], [ -77.436097, 38.760698 ], [ -77.435946, 38.760645 ], [ -77.435801, 38.760594 ], [ -77.435106, 38.760359 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477388", "FULLNAME": "Lindsey Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.43445, 38.761484 ], [ -77.435314, 38.761766 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477433", "FULLNAME": "Robin Lee Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434985, 38.762403 ], [ -77.435314, 38.761766 ], [ -77.435467, 38.76147 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477241", "FULLNAME": "Paul Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426771, 38.756921 ], [ -77.426514, 38.756849 ], [ -77.426243, 38.756768 ], [ -77.426129, 38.756742 ], [ -77.425971, 38.756705 ], [ -77.425841, 38.756685 ], [ -77.425708, 38.756678 ], [ -77.425575, 38.756686 ], [ -77.42542, 38.75671 ], [ -77.425295, 38.756744 ], [ -77.4252, 38.75678 ], [ -77.42509, 38.756837 ], [ -77.424991, 38.756906 ], [ -77.424905, 38.756984 ], [ -77.424656, 38.757294 ], [ -77.424531, 38.757467 ], [ -77.424248, 38.757853 ], [ -77.424213, 38.757964 ], [ -77.424138, 38.758065 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105533752589", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440025, 38.775951 ], [ -77.440262, 38.77599 ], [ -77.440379, 38.776012 ], [ -77.440545, 38.776044 ], [ -77.440579, 38.776048 ], [ -77.440736, 38.776069 ], [ -77.440832, 38.776078 ], [ -77.442553, 38.776195 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477290", "FULLNAME": "Union Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449804, 38.768236 ], [ -77.449446, 38.768042 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477558", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1740" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.441551, 38.773318 ], [ -77.441397, 38.773251 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477238", "FULLNAME": "Mace St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.478288, 38.781986 ], [ -77.478284, 38.781999 ], [ -77.478194, 38.782169 ], [ -77.478093, 38.782358 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477505", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1780" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435288, 38.758018 ], [ -77.435305, 38.758177 ], [ -77.435327, 38.758204 ], [ -77.435361, 38.75822 ], [ -77.43568, 38.758228 ], [ -77.43573, 38.758249 ], [ -77.435769, 38.758282 ], [ -77.435792, 38.758322 ], [ -77.435836, 38.758604 ], [ -77.435867, 38.758654 ], [ -77.435907, 38.758693 ], [ -77.435933, 38.758744 ], [ -77.435983, 38.758953 ], [ -77.436055, 38.759288 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477460", "FULLNAME": "Blooms Quarry Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.44504, 38.770607 ], [ -77.444978, 38.770564 ], [ -77.444875, 38.770495 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477254", "FULLNAME": "Becky Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432417, 38.757439 ], [ -77.432077, 38.757828 ], [ -77.432, 38.757942 ], [ -77.431921, 38.758091 ], [ -77.431903, 38.758142 ], [ -77.431903, 38.758157 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536091", "FULLNAME": "Russia Branch View Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439426, 38.763935 ], [ -77.439368, 38.764115 ], [ -77.439193, 38.764357 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678302854", "FULLNAME": "Handerson Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435931, 38.766477 ], [ -77.435836, 38.766511 ], [ -77.435796, 38.766544 ], [ -77.435572, 38.766917 ], [ -77.435358, 38.767412 ], [ -77.435323, 38.767503 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477229", "FULLNAME": "Golf Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427496, 38.76868 ], [ -77.42784, 38.768682 ], [ -77.428242, 38.768686 ], [ -77.428373, 38.768668 ], [ -77.428456, 38.768644 ], [ -77.428553, 38.768602 ], [ -77.428891, 38.76839 ], [ -77.428906, 38.768376 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477518", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427581, 38.769107 ], [ -77.427294, 38.76916 ], [ -77.427164, 38.769171 ], [ -77.427022, 38.769178 ], [ -77.426945, 38.769198 ], [ -77.426851, 38.769248 ], [ -77.426364, 38.769704 ], [ -77.426319, 38.769733 ], [ -77.426267, 38.769755 ], [ -77.426217, 38.769771 ], [ -77.426181, 38.769796 ], [ -77.426159, 38.769831 ], [ -77.426141, 38.769893 ], [ -77.42611, 38.769937 ], [ -77.426054, 38.76998 ], [ -77.425918, 38.770039 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477489", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440946, 38.771307 ], [ -77.441104, 38.770603 ], [ -77.441034, 38.769803 ], [ -77.441023, 38.769343 ], [ -77.440597, 38.768724 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477260", "FULLNAME": "Elise Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426846, 38.767258 ], [ -77.426861, 38.767551 ], [ -77.426896, 38.767637 ], [ -77.426943, 38.767702 ], [ -77.426992, 38.767749 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081861150", "FULLNAME": "Christopher Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438736, 38.759103 ], [ -77.438402, 38.759493 ], [ -77.43829, 38.759572 ], [ -77.438201, 38.759609 ], [ -77.438066, 38.759619 ], [ -77.437964, 38.759609 ], [ -77.437717, 38.759479 ], [ -77.437664, 38.75945 ], [ -77.437252, 38.759223 ], [ -77.437121, 38.759186 ], [ -77.436958, 38.759186 ], [ -77.436567, 38.759223 ], [ -77.436278, 38.759251 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477491", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436027, 38.760174 ], [ -77.436139, 38.759969 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477492", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436344, 38.760282 ], [ -77.436462, 38.760066 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536679", "FULLNAME": "Lambert Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.460466, 38.780507 ], [ -77.460684, 38.780533 ], [ -77.460956, 38.780579 ], [ -77.461117, 38.780613 ], [ -77.461296, 38.780671 ], [ -77.461466, 38.780741 ], [ -77.461628, 38.780823 ], [ -77.461766, 38.780908 ], [ -77.462145, 38.781103 ], [ -77.462642, 38.781389 ], [ -77.463267, 38.781738 ], [ -77.463379, 38.781785 ], [ -77.463498, 38.781819 ], [ -77.463708, 38.781858 ], [ -77.463873, 38.781904 ], [ -77.464091, 38.782007 ], [ -77.465705, 38.782917 ], [ -77.466026, 38.783101 ], [ -77.466085, 38.78314 ], [ -77.46615, 38.783187 ], [ -77.466247, 38.783275 ], [ -77.466495, 38.783575 ], [ -77.466539, 38.78363 ], [ -77.466778, 38.783888 ], [ -77.466844, 38.783953 ], [ -77.466957, 38.784056 ], [ -77.467127, 38.784187 ], [ -77.467369, 38.784354 ], [ -77.467571, 38.784479 ], [ -77.468244, 38.78492 ], [ -77.468785, 38.785265 ], [ -77.468932, 38.785364 ], [ -77.469102, 38.785496 ], [ -77.469245, 38.785656 ], [ -77.469372, 38.785824 ], [ -77.469715, 38.786388 ], [ -77.469773, 38.786487 ], [ -77.46991, 38.78669 ], [ -77.469997, 38.786852 ], [ -77.470065, 38.787002 ], [ -77.470103, 38.787139 ], [ -77.470122, 38.787278 ], [ -77.470124, 38.787362 ], [ -77.470101, 38.787634 ], [ -77.470085, 38.787829 ], [ -77.470062, 38.788003 ], [ -77.470038, 38.788185 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1102855552280", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452489, 38.771693 ], [ -77.45266, 38.771722 ], [ -77.454002, 38.771953 ], [ -77.454599, 38.772062 ], [ -77.454699, 38.772084 ], [ -77.455037, 38.77215 ], [ -77.455206, 38.772198 ], [ -77.455399, 38.772272 ], [ -77.455801, 38.772485 ], [ -77.45606, 38.772631 ], [ -77.458877, 38.774182 ], [ -77.459051, 38.774279 ], [ -77.45917, 38.774363 ], [ -77.459253, 38.774438 ], [ -77.459335, 38.77454 ], [ -77.459401, 38.774649 ], [ -77.459709, 38.775379 ], [ -77.460275, 38.776716 ], [ -77.460377, 38.777 ], [ -77.460451, 38.777262 ], [ -77.460635, 38.778026 ], [ -77.460742, 38.778439 ], [ -77.460801, 38.778603 ], [ -77.460878, 38.778762 ], [ -77.460957, 38.778887 ], [ -77.461074, 38.779038 ], [ -77.461191, 38.779166 ], [ -77.461322, 38.779289 ], [ -77.461418, 38.779366 ], [ -77.461595, 38.779487 ], [ -77.461784, 38.779597 ], [ -77.465655, 38.781721 ], [ -77.465844, 38.781805 ], [ -77.466082, 38.781889 ], [ -77.46622, 38.78192 ], [ -77.466572, 38.781992 ], [ -77.466741, 38.782041 ], [ -77.466895, 38.7821 ], [ -77.467044, 38.782176 ], [ -77.467202, 38.782279 ], [ -77.467297, 38.782355 ], [ -77.467422, 38.782477 ], [ -77.467522, 38.782603 ], [ -77.467588, 38.782716 ], [ -77.467612, 38.782768 ], [ -77.467696, 38.782966 ], [ -77.467779, 38.783125 ], [ -77.467821, 38.783191 ], [ -77.467928, 38.783322 ], [ -77.468, 38.783396 ], [ -77.468149, 38.783506 ], [ -77.46831, 38.783604 ], [ -77.468378, 38.783639 ], [ -77.468958, 38.783911 ], [ -77.46908, 38.783958 ], [ -77.469228, 38.784001 ], [ -77.469382, 38.784029 ], [ -77.469539, 38.784044 ], [ -77.469608, 38.784044 ], [ -77.469741, 38.784035 ], [ -77.469907, 38.784005 ], [ -77.47004, 38.783965 ], [ -77.47012, 38.783931 ], [ -77.470262, 38.783852 ], [ -77.470367, 38.783782 ], [ -77.470465, 38.783704 ], [ -77.471093, 38.783119 ], [ -77.471218, 38.783022 ], [ -77.471281, 38.782981 ], [ -77.471414, 38.782905 ], [ -77.471545, 38.782845 ], [ -77.471669, 38.782795 ], [ -77.471839, 38.782736 ], [ -77.473781, 38.782014 ], [ -77.474047, 38.781914 ], [ -77.474582, 38.781712 ], [ -77.474808, 38.781646 ], [ -77.474985, 38.781609 ], [ -77.47513, 38.781591 ], [ -77.475303, 38.78158 ], [ -77.47546, 38.781583 ], [ -77.475617, 38.7816 ], [ -77.475855, 38.78165 ], [ -77.476086, 38.781712 ], [ -77.478093, 38.782358 ], [ -77.478795, 38.782583 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110461107385", "FULLNAME": "Conner Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444956, 38.765085 ], [ -77.444914, 38.765065 ], [ -77.444743, 38.764986 ], [ -77.444712, 38.764972 ], [ -77.444503, 38.764875 ], [ -77.444252, 38.764759 ], [ -77.444217, 38.764748 ], [ -77.444125, 38.764731 ], [ -77.444049, 38.764727 ], [ -77.443964, 38.764748 ], [ -77.443807, 38.764912 ], [ -77.443692, 38.765049 ], [ -77.443599, 38.765188 ], [ -77.443521, 38.765338 ], [ -77.443497, 38.765426 ], [ -77.443491, 38.765516 ], [ -77.443505, 38.765606 ], [ -77.443553, 38.765749 ], [ -77.443608, 38.765853 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103947052954", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440417, 38.760036 ], [ -77.440442, 38.76005 ], [ -77.440569, 38.76012 ], [ -77.44113, 38.760431 ], [ -77.441285, 38.760526 ], [ -77.441468, 38.760654 ], [ -77.441621, 38.760781 ], [ -77.441757, 38.760918 ], [ -77.441882, 38.761068 ], [ -77.441988, 38.761225 ], [ -77.442062, 38.761361 ], [ -77.442139, 38.761538 ], [ -77.442198, 38.761718 ], [ -77.442223, 38.761836 ], [ -77.442246, 38.76204 ], [ -77.442249, 38.762174 ], [ -77.442254, 38.762393 ], [ -77.442259, 38.762602 ], [ -77.442261, 38.762854 ], [ -77.442263, 38.763068 ], [ -77.442264, 38.763276 ], [ -77.442265, 38.763331 ], [ -77.442296, 38.763846 ], [ -77.442307, 38.764292 ], [ -77.442308, 38.764451 ], [ -77.44232, 38.764983 ], [ -77.442336, 38.765756 ], [ -77.442347, 38.766279 ], [ -77.442382, 38.766709 ], [ -77.44242, 38.766981 ], [ -77.442453, 38.767145 ], [ -77.442504, 38.767306 ], [ -77.442583, 38.767488 ], [ -77.442713, 38.767742 ], [ -77.442788, 38.76786 ], [ -77.442903, 38.76801 ], [ -77.443028, 38.76814 ], [ -77.443123, 38.768221 ], [ -77.443234, 38.768315 ], [ -77.44341, 38.768445 ], [ -77.443739, 38.768648 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103677851594", "FULLNAME": "Monroe Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.443822, 38.766839 ], [ -77.444071, 38.767341 ], [ -77.444192, 38.767588 ], [ -77.444215, 38.767631 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477408", "FULLNAME": "Hamilton Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449496, 38.767305 ], [ -77.449834, 38.76694 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477275", "FULLNAME": "Owens Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442417, 38.772443 ], [ -77.442584, 38.772549 ], [ -77.443148, 38.772946 ], [ -77.443311, 38.773098 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477331", "FULLNAME": "Morton Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.467122, 38.781068 ], [ -77.467224, 38.781045 ], [ -77.467319, 38.781009 ], [ -77.467388, 38.78097 ], [ -77.467483, 38.780896 ], [ -77.46754, 38.780837 ], [ -77.467607, 38.78074 ], [ -77.467669, 38.780602 ], [ -77.467728, 38.780504 ], [ -77.467816, 38.780387 ], [ -77.468171, 38.780082 ], [ -77.468336, 38.779957 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477358", "FULLNAME": "Spruce St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.461281, 38.78416 ], [ -77.461048, 38.78411 ], [ -77.460753, 38.784061 ], [ -77.460508, 38.784034 ], [ -77.460002, 38.783998 ], [ -77.459663, 38.78396 ], [ -77.459478, 38.783925 ], [ -77.459334, 38.783886 ], [ -77.459216, 38.783857 ], [ -77.459075, 38.783807 ], [ -77.458952, 38.78375 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477341", "FULLNAME": "Runyon Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.459003, 38.783237 ], [ -77.459395, 38.783276 ], [ -77.459886, 38.783314 ], [ -77.460622, 38.783384 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477383", "FULLNAME": "Jessica Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433952, 38.762531 ], [ -77.433969, 38.76243 ], [ -77.433987, 38.762371 ], [ -77.43445, 38.761484 ], [ -77.434523, 38.761364 ], [ -77.434681, 38.761124 ], [ -77.434774, 38.760967 ], [ -77.435106, 38.760359 ], [ -77.43545, 38.75973 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477371", "FULLNAME": "Deborah Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425999, 38.764687 ], [ -77.426194, 38.764563 ], [ -77.4264, 38.76445 ], [ -77.426533, 38.7644 ], [ -77.426673, 38.764365 ], [ -77.426818, 38.764343 ], [ -77.426978, 38.76434 ], [ -77.427172, 38.764358 ], [ -77.427235, 38.764369 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477428", "FULLNAME": "Elizabeth Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426084, 38.760631 ], [ -77.426054, 38.760597 ], [ -77.426031, 38.760546 ], [ -77.426025, 38.760493 ], [ -77.426085, 38.760232 ], [ -77.426085, 38.760161 ], [ -77.426066, 38.760091 ], [ -77.42603, 38.760025 ], [ -77.425978, 38.759967 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477484", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440549, 38.764082 ], [ -77.440549, 38.764093 ], [ -77.440565, 38.764191 ], [ -77.44057, 38.764209 ], [ -77.44076, 38.764823 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477502", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1780" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436055, 38.759288 ], [ -77.436278, 38.759251 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477528", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448184, 38.770076 ], [ -77.448109, 38.770029 ], [ -77.448086, 38.770025 ], [ -77.448064, 38.770034 ], [ -77.447781, 38.770336 ], [ -77.447773, 38.770366 ], [ -77.447779, 38.770391 ], [ -77.447802, 38.770416 ], [ -77.447836, 38.770432 ], [ -77.447912, 38.770439 ], [ -77.447957, 38.770435 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477321", "FULLNAME": "Madera Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448213, 38.768609 ], [ -77.448299, 38.768586 ], [ -77.448372, 38.768551 ], [ -77.44841, 38.768524 ], [ -77.448624, 38.768285 ], [ -77.449232, 38.767634 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477519", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447398, 38.770119 ], [ -77.447186, 38.769989 ], [ -77.447164, 38.769958 ], [ -77.447159, 38.769923 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679538404", "FULLNAME": "Digital Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.43479, 38.767367 ], [ -77.434732, 38.767547 ], [ -77.435016, 38.76799 ], [ -77.435211, 38.76838 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477381", "FULLNAME": "Jenkins Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.47632, 38.784481 ], [ -77.475839, 38.784192 ], [ -77.475776, 38.784172 ], [ -77.475709, 38.784166 ], [ -77.475656, 38.784173 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477363", "FULLNAME": "Walden St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.465608, 38.784045 ], [ -77.46613, 38.784654 ], [ -77.466587, 38.785177 ], [ -77.467443, 38.786184 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678303567", "FULLNAME": "Corbett Cir", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435784, 38.767788 ], [ -77.43587, 38.768132 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477393", "FULLNAME": "Shannon St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425051, 38.767492 ], [ -77.424965, 38.768268 ], [ -77.424929, 38.768411 ], [ -77.424875, 38.768549 ], [ -77.424851, 38.768597 ], [ -77.424741, 38.768791 ], [ -77.424643, 38.768936 ], [ -77.42459, 38.769007 ], [ -77.424451, 38.769175 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477318", "FULLNAME": "Laurie Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.42651, 38.765071 ], [ -77.426346, 38.765288 ], [ -77.426214, 38.765428 ], [ -77.426068, 38.765559 ], [ -77.426021, 38.765589 ], [ -77.425893, 38.765659 ], [ -77.425756, 38.765716 ], [ -77.425612, 38.76576 ], [ -77.425462, 38.765789 ], [ -77.425361, 38.765801 ], [ -77.425205, 38.765809 ], [ -77.425042, 38.765803 ], [ -77.424881, 38.765784 ], [ -77.423686, 38.765524 ], [ -77.423582, 38.76548 ], [ -77.423533, 38.76545 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477250", "FULLNAME": "Alexa Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425848, 38.767432 ], [ -77.425687, 38.766914 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081861178", "FULLNAME": "Phita Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436567, 38.759223 ], [ -77.436441, 38.758739 ], [ -77.436465, 38.75866 ], [ -77.436521, 38.758599 ], [ -77.436604, 38.758576 ], [ -77.436674, 38.758566 ], [ -77.436791, 38.758604 ], [ -77.438197, 38.759344 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477493", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435853, 38.760491 ], [ -77.436027, 38.760174 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477507", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436344, 38.760282 ], [ -77.436191, 38.76023 ], [ -77.436027, 38.760174 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536131", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.43178, 38.762119 ], [ -77.432148, 38.762283 ], [ -77.432188, 38.762287 ], [ -77.432218, 38.76228 ], [ -77.432249, 38.762259 ], [ -77.432346, 38.762154 ], [ -77.432355, 38.762117 ], [ -77.432346, 38.76208 ], [ -77.43232, 38.762049 ], [ -77.43213, 38.761943 ], [ -77.431974, 38.761892 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679538422", "FULLNAME": "Black Hawk Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433392, 38.762584 ], [ -77.433082, 38.762654 ], [ -77.432949, 38.762669 ], [ -77.432808, 38.762667 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536129", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.431612, 38.761818 ], [ -77.431461, 38.762049 ], [ -77.431283, 38.762288 ], [ -77.430671, 38.763074 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477496", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436174, 38.760593 ], [ -77.436344, 38.760282 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477298", "FULLNAME": "Cabbel Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.454755, 38.775544 ], [ -77.455264, 38.774956 ], [ -77.455301, 38.774931 ], [ -77.455342, 38.774914 ], [ -77.455388, 38.774905 ], [ -77.455596, 38.774885 ], [ -77.455666, 38.774867 ], [ -77.455702, 38.774851 ], [ -77.455762, 38.774908 ], [ -77.455883, 38.774992 ], [ -77.457097, 38.775654 ], [ -77.457487, 38.775874 ], [ -77.459403, 38.776921 ], [ -77.459529, 38.776972 ], [ -77.459662, 38.77701 ], [ -77.45983, 38.777038 ], [ -77.459973, 38.777046 ], [ -77.460117, 38.77704 ], [ -77.460377, 38.777 ], [ -77.460832, 38.776929 ], [ -77.461615, 38.776818 ], [ -77.461878, 38.776783 ], [ -77.462097, 38.776768 ], [ -77.462273, 38.776767 ], [ -77.462526, 38.77678 ], [ -77.462717, 38.776802 ], [ -77.462905, 38.776838 ], [ -77.463051, 38.776878 ], [ -77.463259, 38.776955 ], [ -77.463513, 38.777062 ], [ -77.46366, 38.777133 ], [ -77.463945, 38.777297 ], [ -77.464691, 38.777701 ], [ -77.465179, 38.777974 ], [ -77.465476, 38.778118 ], [ -77.465707, 38.778211 ], [ -77.465947, 38.77829 ], [ -77.466257, 38.778368 ], [ -77.466473, 38.778413 ], [ -77.466696, 38.778445 ], [ -77.466817, 38.778478 ], [ -77.466908, 38.778514 ], [ -77.467036, 38.778582 ], [ -77.467149, 38.778667 ], [ -77.467227, 38.778749 ], [ -77.467337, 38.778893 ], [ -77.46763, 38.779278 ], [ -77.467771, 38.779441 ], [ -77.468011, 38.779682 ], [ -77.468174, 38.779834 ], [ -77.468336, 38.779957 ], [ -77.468709, 38.780199 ], [ -77.468993, 38.780363 ], [ -77.469156, 38.780446 ], [ -77.469334, 38.780524 ], [ -77.47058, 38.781102 ], [ -77.470722, 38.781186 ], [ -77.470846, 38.781278 ], [ -77.470935, 38.78137 ], [ -77.471008, 38.78147 ], [ -77.471064, 38.781576 ], [ -77.471081, 38.78162 ], [ -77.471113, 38.781755 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103677851555", "FULLNAME": "Bank St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444215, 38.767631 ], [ -77.444076, 38.767697 ], [ -77.443592, 38.767949 ], [ -77.443123, 38.768221 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105045631567", "FULLNAME": "Euclid Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444586, 38.7708 ], [ -77.44448, 38.770894 ], [ -77.444421, 38.770948 ], [ -77.444212, 38.771128 ], [ -77.443976, 38.771308 ], [ -77.443168, 38.771853 ], [ -77.442915, 38.77204 ], [ -77.442494, 38.772376 ], [ -77.442417, 38.772443 ], [ -77.442028, 38.772802 ], [ -77.441812, 38.773026 ], [ -77.441551, 38.773318 ], [ -77.441371, 38.773538 ], [ -77.441129, 38.77386 ], [ -77.440946, 38.774134 ], [ -77.440761, 38.77444 ], [ -77.440582, 38.774769 ], [ -77.440484, 38.774971 ], [ -77.440341, 38.775317 ], [ -77.440212, 38.775672 ], [ -77.440184, 38.77576 ], [ -77.440157, 38.775844 ], [ -77.440133, 38.775881 ], [ -77.440091, 38.775919 ], [ -77.440059, 38.775938 ], [ -77.440025, 38.775951 ], [ -77.439999, 38.775921 ], [ -77.439978, 38.775874 ], [ -77.439973, 38.775824 ], [ -77.439987, 38.775768 ], [ -77.44012, 38.775401 ], [ -77.440354, 38.774855 ], [ -77.440441, 38.774678 ], [ -77.440679, 38.774246 ], [ -77.440893, 38.773913 ], [ -77.441077, 38.773652 ], [ -77.441313, 38.773348 ], [ -77.441397, 38.773251 ], [ -77.441626, 38.772987 ], [ -77.441854, 38.772747 ], [ -77.442119, 38.772491 ], [ -77.442357, 38.77228 ], [ -77.442675, 38.772023 ], [ -77.442921, 38.771835 ], [ -77.443216, 38.77163 ], [ -77.443632, 38.771364 ], [ -77.443905, 38.77117 ], [ -77.444059, 38.771051 ], [ -77.444294, 38.77085 ], [ -77.444471, 38.770682 ], [ -77.444725, 38.770412 ], [ -77.444968, 38.77015 ], [ -77.44513, 38.769967 ], [ -77.445391, 38.769696 ], [ -77.445531, 38.769551 ], [ -77.446118, 38.768932 ], [ -77.446314, 38.768714 ], [ -77.446717, 38.768266 ], [ -77.447064, 38.767887 ], [ -77.447124, 38.767822 ], [ -77.447277, 38.767656 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477452", "FULLNAME": "White Pine Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447359, 38.771423 ], [ -77.447004, 38.771229 ], [ -77.446973, 38.771228 ], [ -77.446947, 38.771241 ], [ -77.446865, 38.771322 ], [ -77.446865, 38.771342 ], [ -77.446878, 38.771357 ], [ -77.447193, 38.771587 ], [ -77.447728, 38.771991 ], [ -77.448235, 38.772315 ], [ -77.448409, 38.772407 ], [ -77.449011, 38.772664 ], [ -77.449059, 38.772688 ], [ -77.449204, 38.772757 ], [ -77.450168, 38.773166 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477313", "FULLNAME": "Euclid Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440025, 38.775951 ], [ -77.440026, 38.776006 ], [ -77.440053, 38.776109 ], [ -77.440061, 38.776185 ], [ -77.440006, 38.776449 ], [ -77.439931, 38.7769 ], [ -77.439897, 38.777274 ], [ -77.439855, 38.77761 ], [ -77.439848, 38.777666 ], [ -77.439783, 38.778086 ], [ -77.439771, 38.778267 ], [ -77.439775, 38.778457 ], [ -77.439794, 38.778659 ], [ -77.439863, 38.779065 ], [ -77.439874, 38.779272 ], [ -77.439855, 38.7794 ], [ -77.439816, 38.779526 ], [ -77.439759, 38.77965 ], [ -77.439683, 38.779771 ], [ -77.439606, 38.779864 ], [ -77.439479, 38.779981 ], [ -77.439275, 38.780133 ], [ -77.438699, 38.78053 ], [ -77.438567, 38.78062 ], [ -77.438512, 38.780632 ], [ -77.438466, 38.780633 ], [ -77.438411, 38.780621 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477274", "FULLNAME": "Nancy St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430642, 38.759887 ], [ -77.430303, 38.759799 ], [ -77.430129, 38.759739 ], [ -77.429932, 38.75965 ], [ -77.429081, 38.759192 ], [ -77.428839, 38.759076 ], [ -77.428442, 38.758897 ], [ -77.428229, 38.758818 ], [ -77.42801, 38.758753 ], [ -77.427259, 38.758572 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477396", "FULLNAME": "Tremont St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.46655, 38.786657 ], [ -77.466372, 38.786439 ], [ -77.465826, 38.785799 ], [ -77.465368, 38.785251 ], [ -77.464966, 38.784808 ], [ -77.464719, 38.784511 ], [ -77.464287, 38.78401 ], [ -77.46428, 38.783969 ], [ -77.464289, 38.783936 ], [ -77.464331, 38.783879 ], [ -77.464416, 38.783785 ], [ -77.464478, 38.783738 ], [ -77.464552, 38.783701 ], [ -77.464635, 38.783679 ], [ -77.464705, 38.783672 ], [ -77.464771, 38.783673 ], [ -77.464839, 38.783659 ], [ -77.464899, 38.783632 ], [ -77.465144, 38.783483 ], [ -77.465242, 38.783404 ], [ -77.465705, 38.782917 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477527", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.473781, 38.782014 ], [ -77.473745, 38.781981 ], [ -77.473459, 38.781435 ], [ -77.473415, 38.781364 ], [ -77.473392, 38.781323 ], [ -77.473248, 38.781126 ], [ -77.473148, 38.781009 ], [ -77.473047, 38.780919 ], [ -77.472934, 38.780839 ], [ -77.472808, 38.78077 ], [ -77.472701, 38.780723 ], [ -77.47256, 38.780677 ], [ -77.472436, 38.780645 ], [ -77.472283, 38.780594 ], [ -77.472166, 38.780544 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477536", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433615, 38.758431 ], [ -77.433548, 38.758325 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477306", "FULLNAME": "Cougar Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.42231, 38.764945 ], [ -77.422058, 38.764348 ], [ -77.421922, 38.76404 ], [ -77.421794, 38.763747 ], [ -77.421705, 38.763499 ], [ -77.421692, 38.763382 ], [ -77.421695, 38.763287 ], [ -77.421715, 38.76317 ], [ -77.421898, 38.762618 ], [ -77.42194, 38.762518 ], [ -77.422007, 38.762398 ], [ -77.422092, 38.762286 ], [ -77.422286, 38.762077 ], [ -77.422296, 38.761925 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110461107160", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436986, 38.758088 ], [ -77.436887, 38.758054 ], [ -77.436778, 38.758017 ], [ -77.436606, 38.757971 ], [ -77.436473, 38.757943 ], [ -77.436307, 38.757915 ], [ -77.436286, 38.757913 ], [ -77.436163, 38.757898 ], [ -77.435886, 38.757881 ], [ -77.435708, 38.757881 ], [ -77.43541, 38.757893 ], [ -77.435174, 38.757914 ], [ -77.434833, 38.757959 ], [ -77.43452, 38.758017 ], [ -77.434263, 38.75808 ], [ -77.434008, 38.758157 ], [ -77.433792, 38.75823 ], [ -77.433548, 38.758325 ], [ -77.433235, 38.758469 ], [ -77.433009, 38.758592 ], [ -77.432836, 38.758697 ], [ -77.432617, 38.758848 ], [ -77.432434, 38.758987 ], [ -77.432219, 38.75917 ], [ -77.432023, 38.759357 ], [ -77.431866, 38.759528 ], [ -77.431725, 38.759708 ], [ -77.431563, 38.759952 ], [ -77.430911, 38.760992 ], [ -77.430567, 38.761539 ], [ -77.430497, 38.761658 ], [ -77.430366, 38.76185 ], [ -77.430219, 38.762034 ], [ -77.429742, 38.762554 ], [ -77.429436, 38.762905 ], [ -77.429195, 38.763197 ], [ -77.428539, 38.764024 ], [ -77.42808, 38.764611 ], [ -77.427963, 38.764781 ], [ -77.427929, 38.764844 ], [ -77.427854, 38.765005 ], [ -77.427797, 38.76517 ], [ -77.42775, 38.765373 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477490", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.459083, 38.78228 ], [ -77.459281, 38.782305 ], [ -77.459492, 38.782348 ], [ -77.459739, 38.782413 ], [ -77.459837, 38.782443 ], [ -77.460221, 38.782519 ], [ -77.460377, 38.782544 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477431", "FULLNAME": "Hedgeford St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429386, 38.765648 ], [ -77.429367, 38.765488 ], [ -77.429345, 38.765414 ], [ -77.429304, 38.765345 ], [ -77.429099, 38.765128 ], [ -77.42907, 38.765074 ], [ -77.42905, 38.765003 ], [ -77.429047, 38.764931 ], [ -77.429058, 38.764873 ], [ -77.429088, 38.764804 ], [ -77.42933, 38.764492 ], [ -77.429604, 38.764134 ], [ -77.42967, 38.764054 ], [ -77.429752, 38.763984 ], [ -77.429818, 38.763943 ], [ -77.429881, 38.763917 ], [ -77.429949, 38.763899 ], [ -77.430019, 38.763889 ], [ -77.430108, 38.76389 ], [ -77.430178, 38.7639 ], [ -77.430257, 38.763927 ], [ -77.430315, 38.763957 ], [ -77.430376, 38.764005 ], [ -77.430424, 38.764061 ], [ -77.430452, 38.76412 ], [ -77.43047, 38.764183 ], [ -77.430477, 38.764265 ], [ -77.430452, 38.764443 ], [ -77.430456, 38.764856 ], [ -77.430479, 38.765421 ], [ -77.430474, 38.76563 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477252", "FULLNAME": "Arnie Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432201, 38.7686 ], [ -77.43152, 38.768474 ], [ -77.431103, 38.768404 ], [ -77.430939, 38.768364 ], [ -77.430813, 38.768321 ], [ -77.430664, 38.768255 ], [ -77.430553, 38.768193 ], [ -77.430426, 38.768106 ], [ -77.430312, 38.768007 ], [ -77.430074, 38.767774 ], [ -77.429931, 38.767644 ], [ -77.429836, 38.767572 ], [ -77.429712, 38.767497 ], [ -77.429578, 38.767433 ], [ -77.42945, 38.767393 ], [ -77.429317, 38.767368 ], [ -77.428893, 38.767333 ], [ -77.428507, 38.76731 ], [ -77.428312, 38.767304 ], [ -77.427984, 38.76732 ], [ -77.427779, 38.767317 ], [ -77.42765, 38.767308 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105533753031", "FULLNAME": "Sunset Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439314, 38.763773 ], [ -77.439367, 38.763897 ], [ -77.439426, 38.763935 ], [ -77.439718, 38.764007 ], [ -77.439914, 38.763926 ], [ -77.440175, 38.763774 ], [ -77.440511, 38.763405 ], [ -77.440716, 38.763289 ], [ -77.440864, 38.763069 ], [ -77.440764, 38.762945 ], [ -77.440565, 38.762862 ], [ -77.440314, 38.762734 ], [ -77.44025, 38.762704 ], [ -77.440176, 38.762682 ], [ -77.440031, 38.762656 ], [ -77.439933, 38.76266 ], [ -77.439782, 38.762734 ], [ -77.439586, 38.762956 ], [ -77.439371, 38.763189 ], [ -77.439279, 38.763335 ], [ -77.439235, 38.763465 ], [ -77.439314, 38.763773 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477296", "FULLNAME": "Andrew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436215, 38.759019 ], [ -77.436278, 38.759251 ], [ -77.436336, 38.759469 ], [ -77.43635, 38.759599 ], [ -77.436347, 38.759704 ], [ -77.436332, 38.759825 ], [ -77.436301, 38.759963 ], [ -77.436251, 38.760105 ], [ -77.436191, 38.76023 ], [ -77.435946, 38.760645 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477425", "FULLNAME": "Reinecke Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.451017, 38.768927 ], [ -77.450455, 38.768608 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477376", "FULLNAME": "General Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.450861, 38.767525 ], [ -77.450626, 38.767761 ], [ -77.45057, 38.767823 ], [ -77.450425, 38.767984 ], [ -77.45032, 38.768102 ], [ -77.450185, 38.768265 ], [ -77.450143, 38.768303 ], [ -77.450079, 38.768342 ], [ -77.450021, 38.768365 ], [ -77.44997, 38.768377 ], [ -77.449964, 38.768342 ], [ -77.44994, 38.768312 ], [ -77.449804, 38.768236 ], [ -77.449646, 38.768411 ], [ -77.449255, 38.76884 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477224", "FULLNAME": "Anna Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.451525, 38.768378 ], [ -77.450963, 38.768053 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477359", "FULLNAME": "Sumter Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447159, 38.769923 ], [ -77.447113, 38.769919 ], [ -77.447089, 38.769909 ], [ -77.446133, 38.769375 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477403", "FULLNAME": "Woodhue Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447998, 38.770342 ], [ -77.448169, 38.770408 ], [ -77.448476, 38.770576 ], [ -77.448568, 38.770594 ], [ -77.448668, 38.770598 ], [ -77.449146, 38.770737 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477538", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436215, 38.757642 ], [ -77.436207, 38.75767 ], [ -77.436203, 38.757684 ], [ -77.43618, 38.757807 ], [ -77.436163, 38.757898 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678302955", "FULLNAME": "Pickens Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434732, 38.767547 ], [ -77.434491, 38.76762 ], [ -77.434394, 38.767617 ], [ -77.434314, 38.767597 ], [ -77.434239, 38.767569 ], [ -77.434171, 38.767563 ], [ -77.434096, 38.767579 ], [ -77.434041, 38.767616 ], [ -77.433935, 38.767809 ], [ -77.433793, 38.768082 ], [ -77.433436, 38.768769 ], [ -77.433405, 38.768857 ], [ -77.433605, 38.768792 ], [ -77.433867, 38.768732 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477328", "FULLNAME": "Meeker Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.470701, 38.784695 ], [ -77.470613, 38.784851 ], [ -77.470575, 38.784936 ], [ -77.470544, 38.785046 ], [ -77.470541, 38.785115 ], [ -77.470558, 38.785231 ], [ -77.470585, 38.785321 ], [ -77.470612, 38.785378 ], [ -77.47067, 38.785459 ], [ -77.470743, 38.785532 ], [ -77.47083, 38.785595 ], [ -77.470955, 38.785661 ], [ -77.471093, 38.785709 ], [ -77.471216, 38.785735 ], [ -77.471599, 38.785764 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477362", "FULLNAME": "Vassau Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437176, 38.777054 ], [ -77.437524, 38.777217 ], [ -77.437674, 38.777305 ], [ -77.43785, 38.777424 ], [ -77.438014, 38.777554 ], [ -77.438075, 38.777609 ], [ -77.438277, 38.777817 ], [ -77.43849, 38.778009 ], [ -77.43865, 38.778169 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477550", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428906, 38.768376 ], [ -77.428914, 38.768353 ], [ -77.428919, 38.768308 ], [ -77.428937, 38.768264 ], [ -77.428968, 38.768225 ], [ -77.429008, 38.768207 ], [ -77.429052, 38.768204 ], [ -77.429095, 38.768215 ], [ -77.429128, 38.768239 ], [ -77.42915, 38.768272 ], [ -77.429156, 38.768294 ], [ -77.429149, 38.768331 ], [ -77.429125, 38.768364 ], [ -77.429087, 38.768386 ], [ -77.429042, 38.768396 ], [ -77.429004, 38.768394 ], [ -77.428906, 38.768376 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477404", "FULLNAME": "Zachary Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433548, 38.758325 ], [ -77.433405, 38.758109 ], [ -77.433285, 38.757973 ], [ -77.433169, 38.757869 ], [ -77.43304, 38.757779 ], [ -77.432857, 38.75767 ], [ -77.432752, 38.757617 ], [ -77.432417, 38.757439 ], [ -77.432217, 38.757332 ], [ -77.432059, 38.757242 ], [ -77.431967, 38.757171 ], [ -77.431888, 38.75709 ], [ -77.431815, 38.756982 ], [ -77.431788, 38.756925 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678306484", "FULLNAME": "Market St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442382, 38.766709 ], [ -77.442993, 38.766692 ], [ -77.443401, 38.766749 ], [ -77.443708, 38.766803 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477540", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442788, 38.76786 ], [ -77.441799, 38.768285 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1101168884340", "FULLNAME": "Euclid Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447277, 38.767656 ], [ -77.447432, 38.767486 ], [ -77.448085, 38.766735 ], [ -77.448507, 38.766147 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477263", "FULLNAME": "Jenna Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.424851, 38.768597 ], [ -77.425102, 38.768672 ], [ -77.425195, 38.768686 ], [ -77.425289, 38.768685 ], [ -77.425382, 38.76867 ], [ -77.425417, 38.768661 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103691411843", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1640" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425918, 38.770039 ], [ -77.425756, 38.77012 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477270", "FULLNAME": "Lanae Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433952, 38.762531 ], [ -77.433951, 38.76259 ], [ -77.433959, 38.762671 ], [ -77.434154, 38.763197 ], [ -77.434215, 38.763375 ], [ -77.434239, 38.76343 ], [ -77.434311, 38.763563 ], [ -77.434364, 38.763635 ], [ -77.434447, 38.763721 ], [ -77.434564, 38.76382 ], [ -77.435028, 38.764101 ], [ -77.435072, 38.764117 ], [ -77.435131, 38.76412 ], [ -77.435168, 38.76411 ], [ -77.435207, 38.764088 ], [ -77.435343, 38.763889 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477406", "FULLNAME": "Courtney Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.465748, 38.779296 ], [ -77.465735, 38.779345 ], [ -77.465718, 38.779467 ], [ -77.465827, 38.780285 ], [ -77.46593, 38.780963 ], [ -77.466034, 38.781291 ], [ -77.466126, 38.781508 ], [ -77.46617, 38.781641 ], [ -77.46622, 38.78192 ], [ -77.46623, 38.781985 ], [ -77.466229, 38.782083 ], [ -77.466209, 38.782179 ], [ -77.466173, 38.782271 ], [ -77.466084, 38.782443 ], [ -77.465999, 38.782576 ], [ -77.465873, 38.782735 ], [ -77.465754, 38.782864 ], [ -77.465705, 38.782917 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105045621660", "FULLNAME": "Kirby St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.463258, 38.778064 ], [ -77.463945, 38.777297 ], [ -77.464204, 38.777018 ], [ -77.464331, 38.776914 ], [ -77.464346, 38.7769 ], [ -77.464605, 38.776549 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477454", "FULLNAME": "Centreville Rd", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.4521, 38.773417 ], [ -77.452286, 38.772609 ], [ -77.452341, 38.772372 ], [ -77.452442, 38.771884 ], [ -77.452489, 38.771693 ], [ -77.452584, 38.771324 ], [ -77.452728, 38.770689 ], [ -77.452782, 38.770506 ], [ -77.452886, 38.770232 ], [ -77.452991, 38.769999 ], [ -77.453086, 38.769816 ], [ -77.453259, 38.769509 ], [ -77.45337, 38.769343 ], [ -77.453591, 38.769031 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477245", "FULLNAME": "Yost Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.460644, 38.782045 ], [ -77.460819, 38.782281 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477235", "FULLNAME": "Kent Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.467612, 38.782768 ], [ -77.468063, 38.782648 ], [ -77.468257, 38.782588 ], [ -77.468444, 38.782514 ], [ -77.468637, 38.782421 ], [ -77.468997, 38.782235 ], [ -77.469555, 38.781969 ], [ -77.469764, 38.781883 ], [ -77.469932, 38.78184 ], [ -77.470105, 38.781812 ], [ -77.471113, 38.781755 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477379", "FULLNAME": "Heather Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427117, 38.761586 ], [ -77.427116, 38.761744 ], [ -77.427134, 38.761901 ], [ -77.427165, 38.762063 ], [ -77.427205, 38.762192 ], [ -77.427272, 38.762349 ], [ -77.427315, 38.762424 ], [ -77.427382, 38.762485 ], [ -77.427461, 38.762536 ], [ -77.427514, 38.762561 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477335", "FULLNAME": "Moseby Ct", "RTTYP": "M", "MTFCC": "S1500" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.469766, 38.779297 ], [ -77.469773, 38.779232 ], [ -77.469793, 38.779183 ], [ -77.469872, 38.779034 ], [ -77.469865, 38.778998 ], [ -77.469841, 38.778973 ], [ -77.469591, 38.778836 ], [ -77.46954, 38.778814 ], [ -77.469501, 38.77878 ], [ -77.469477, 38.778739 ], [ -77.469465, 38.77869 ], [ -77.469445, 38.778666 ], [ -77.469125, 38.778486 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477526", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447064, 38.767887 ], [ -77.447189, 38.767956 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477551", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.450573, 38.772277 ], [ -77.450789, 38.772401 ], [ -77.45082, 38.772401 ], [ -77.450838, 38.772389 ], [ -77.450928, 38.772292 ], [ -77.45093, 38.772269 ], [ -77.450917, 38.772253 ], [ -77.450768, 38.772168 ], [ -77.450732, 38.772161 ], [ -77.450696, 38.772168 ], [ -77.450677, 38.772179 ], [ -77.450573, 38.772277 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678302491", "FULLNAME": "Holmes Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436061, 38.767707 ], [ -77.436112, 38.767479 ], [ -77.436127, 38.767366 ], [ -77.436359, 38.766968 ], [ -77.436399, 38.766911 ], [ -77.436399, 38.766852 ], [ -77.436403, 38.766797 ], [ -77.436819, 38.766379 ], [ -77.437247, 38.765981 ], [ -77.437283, 38.765928 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678293384", "FULLNAME": "Creek View Ter", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438444, 38.765325 ], [ -77.437956, 38.765064 ], [ -77.437776, 38.764983 ], [ -77.437697, 38.764938 ], [ -77.437618, 38.764863 ], [ -77.437526, 38.764778 ], [ -77.437397, 38.764667 ], [ -77.437344, 38.764644 ], [ -77.43708, 38.764556 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477287", "FULLNAME": "Steve St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429867, 38.756772 ], [ -77.429576, 38.75695 ], [ -77.429429, 38.757054 ], [ -77.429259, 38.757193 ], [ -77.429109, 38.757339 ], [ -77.428827, 38.757637 ], [ -77.428789, 38.757686 ], [ -77.428706, 38.757813 ], [ -77.42865, 38.757919 ], [ -77.428605, 38.758028 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477239", "FULLNAME": "Mace St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.476028, 38.781258 ], [ -77.47599, 38.781326 ], [ -77.475855, 38.78165 ], [ -77.475799, 38.781797 ], [ -77.47576, 38.781947 ], [ -77.475747, 38.782079 ], [ -77.47575, 38.782185 ], [ -77.475765, 38.78229 ], [ -77.475875, 38.782789 ], [ -77.476015, 38.783388 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477234", "FULLNAME": "Kent Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.473781, 38.782014 ], [ -77.473844, 38.782053 ], [ -77.473867, 38.782073 ], [ -77.473941, 38.782202 ], [ -77.474142, 38.782532 ], [ -77.474264, 38.782745 ], [ -77.474525, 38.783174 ], [ -77.474562, 38.783264 ], [ -77.474581, 38.783358 ], [ -77.474586, 38.783455 ], [ -77.474573, 38.783552 ], [ -77.474541, 38.783646 ], [ -77.47445, 38.783854 ], [ -77.473829, 38.785 ], [ -77.473778, 38.785136 ], [ -77.473747, 38.785278 ], [ -77.473725, 38.78547 ], [ -77.473692, 38.785886 ], [ -77.473664, 38.786203 ], [ -77.473636, 38.786338 ], [ -77.473584, 38.786485 ], [ -77.473541, 38.786557 ], [ -77.473484, 38.786623 ], [ -77.47338, 38.786707 ], [ -77.473311, 38.786784 ], [ -77.472819, 38.787509 ], [ -77.472816, 38.787543 ], [ -77.472824, 38.787565 ], [ -77.472837, 38.787581 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477257", "FULLNAME": "Drake Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.469715, 38.786388 ], [ -77.469225, 38.786574 ], [ -77.469036, 38.786637 ], [ -77.468903, 38.786666 ], [ -77.468171, 38.786738 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679106335", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1780" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.422296, 38.761925 ], [ -77.422286, 38.761832 ], [ -77.422411, 38.761499 ], [ -77.422931, 38.760999 ], [ -77.423067, 38.760858 ], [ -77.423211, 38.760187 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679537853", "FULLNAME": "Elm Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438664, 38.761935 ], [ -77.43882, 38.761997 ], [ -77.438867, 38.762093 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679094720", "FULLNAME": "Battalion Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436239, 38.766071 ], [ -77.436346, 38.766159 ], [ -77.436489, 38.766242 ], [ -77.4366, 38.766266 ], [ -77.436693, 38.766287 ], [ -77.436819, 38.766379 ], [ -77.437057, 38.766572 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536473", "FULLNAME": "Handerson Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435323, 38.767503 ], [ -77.43479, 38.767367 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536539", "FULLNAME": "Corbett Cir", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435016, 38.76799 ], [ -77.435784, 38.767788 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678293757", "FULLNAME": "Locust Ter", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437618, 38.764863 ], [ -77.437683, 38.764758 ], [ -77.437827, 38.764669 ], [ -77.437847, 38.764588 ], [ -77.43789, 38.764136 ], [ -77.437857, 38.763957 ], [ -77.437788, 38.763592 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477258", "FULLNAME": "Eagle Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428815, 38.76997 ], [ -77.428754, 38.770329 ], [ -77.428759, 38.770415 ], [ -77.428783, 38.7705 ], [ -77.428814, 38.770565 ], [ -77.428869, 38.77064 ], [ -77.428939, 38.770706 ], [ -77.429026, 38.770761 ], [ -77.429103, 38.770797 ], [ -77.429207, 38.770829 ], [ -77.429294, 38.770845 ], [ -77.429789, 38.770898 ], [ -77.429889, 38.770902 ], [ -77.430857, 38.770909 ], [ -77.430975, 38.770923 ], [ -77.431089, 38.770951 ], [ -77.431353, 38.771036 ], [ -77.431428, 38.771046 ], [ -77.431503, 38.771041 ], [ -77.431574, 38.771021 ], [ -77.4316, 38.771009 ], [ -77.431806, 38.77087 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679090051", "FULLNAME": "Park Station Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435558, 38.766047 ], [ -77.435539, 38.76606 ], [ -77.435424, 38.766162 ], [ -77.435331, 38.766268 ], [ -77.435184, 38.766472 ], [ -77.434888, 38.767014 ], [ -77.43479, 38.767367 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477382", "FULLNAME": "Jessica Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433392, 38.762584 ], [ -77.433574, 38.762544 ], [ -77.433733, 38.762526 ], [ -77.433952, 38.762531 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678610426", "FULLNAME": "Wheats Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435184, 38.766472 ], [ -77.434829, 38.766353 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081861013", "FULLNAME": "Maria Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436952, 38.763666 ], [ -77.436173, 38.763433 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477244", "FULLNAME": "Polk Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.459432, 38.778209 ], [ -77.460635, 38.778026 ], [ -77.462031, 38.777815 ], [ -77.462245, 38.777797 ], [ -77.462391, 38.777795 ], [ -77.462511, 38.777802 ], [ -77.462629, 38.777819 ], [ -77.462802, 38.777861 ], [ -77.462971, 38.777923 ], [ -77.463108, 38.777983 ], [ -77.463258, 38.778064 ], [ -77.464138, 38.77856 ], [ -77.465098, 38.779086 ], [ -77.465289, 38.779174 ], [ -77.465452, 38.779235 ], [ -77.465597, 38.779272 ], [ -77.465748, 38.779296 ], [ -77.465868, 38.779305 ], [ -77.466146, 38.779306 ], [ -77.466301, 38.779293 ], [ -77.466453, 38.779265 ], [ -77.466601, 38.779226 ], [ -77.466743, 38.779177 ], [ -77.46685, 38.779128 ], [ -77.467246, 38.778934 ], [ -77.467337, 38.778893 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536161", "FULLNAME": "Colburn Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.466495, 38.783575 ], [ -77.466454, 38.783597 ], [ -77.465608, 38.784045 ], [ -77.464719, 38.784511 ], [ -77.464339, 38.784714 ], [ -77.463824, 38.784982 ], [ -77.463484, 38.785158 ], [ -77.462936, 38.78545 ], [ -77.462037, 38.785924 ], [ -77.460696, 38.786628 ], [ -77.460055, 38.786967 ], [ -77.459967, 38.787018 ], [ -77.459892, 38.787079 ], [ -77.459847, 38.787131 ], [ -77.45979, 38.787229 ], [ -77.459759, 38.787318 ], [ -77.459736, 38.787494 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477249", "FULLNAME": "Adams St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.46143, 38.782943 ], [ -77.461274, 38.783166 ], [ -77.461248, 38.783233 ], [ -77.461239, 38.783302 ], [ -77.461249, 38.783372 ], [ -77.461263, 38.783412 ], [ -77.461456, 38.783722 ], [ -77.461466, 38.783772 ], [ -77.461458, 38.783823 ], [ -77.461281, 38.78416 ], [ -77.461195, 38.784338 ], [ -77.461158, 38.784451 ], [ -77.461138, 38.78459 ], [ -77.461141, 38.784679 ], [ -77.461157, 38.784762 ], [ -77.461193, 38.784863 ], [ -77.461234, 38.784942 ], [ -77.461293, 38.785039 ], [ -77.461361, 38.785128 ], [ -77.46146, 38.785231 ], [ -77.462037, 38.785924 ], [ -77.462384, 38.786316 ], [ -77.462454, 38.786423 ], [ -77.462497, 38.786512 ], [ -77.46255, 38.786638 ], [ -77.462576, 38.786744 ], [ -77.462584, 38.786864 ], [ -77.462578, 38.786973 ], [ -77.462558, 38.78712 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103717088866", "FULLNAME": "Mathis Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.454002, 38.771953 ], [ -77.454268, 38.770769 ], [ -77.454316, 38.770582 ], [ -77.454377, 38.770429 ], [ -77.454447, 38.770304 ], [ -77.454463, 38.770283 ], [ -77.454535, 38.770186 ], [ -77.454562, 38.770155 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477284", "FULLNAME": "Scott Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.455301, 38.774931 ], [ -77.455202, 38.774869 ], [ -77.455126, 38.774801 ], [ -77.454834, 38.774425 ], [ -77.454583, 38.774078 ], [ -77.454538, 38.774008 ], [ -77.454478, 38.773886 ], [ -77.454436, 38.773759 ], [ -77.454407, 38.773602 ], [ -77.454401, 38.77347 ], [ -77.454414, 38.773337 ], [ -77.454668, 38.772237 ], [ -77.454699, 38.772084 ], [ -77.454806, 38.771681 ], [ -77.454837, 38.771511 ], [ -77.45486, 38.771443 ], [ -77.454899, 38.77138 ], [ -77.454954, 38.771324 ], [ -77.455023, 38.771278 ], [ -77.455087, 38.771248 ], [ -77.455174, 38.771222 ], [ -77.455267, 38.771212 ], [ -77.45536, 38.771215 ], [ -77.455484, 38.771242 ], [ -77.455584, 38.771279 ], [ -77.456963, 38.772047 ], [ -77.457748, 38.772471 ], [ -77.457948, 38.772575 ], [ -77.458426, 38.772844 ], [ -77.458579, 38.772913 ], [ -77.458733, 38.772968 ], [ -77.458837, 38.772991 ], [ -77.458973, 38.773009 ], [ -77.459097, 38.773016 ], [ -77.459251, 38.773011 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103677851647", "FULLNAME": "Franklin Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.443708, 38.766803 ], [ -77.443822, 38.766839 ], [ -77.44436, 38.766226 ], [ -77.444364, 38.766168 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477418", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.443739, 38.768648 ], [ -77.443798, 38.768716 ], [ -77.443849, 38.768766 ], [ -77.443932, 38.76883 ], [ -77.444217, 38.769006 ], [ -77.444979, 38.769442 ], [ -77.445391, 38.769696 ], [ -77.445526, 38.769785 ], [ -77.446558, 38.770471 ], [ -77.446755, 38.770592 ], [ -77.446968, 38.770705 ], [ -77.44719, 38.770806 ], [ -77.447468, 38.770911 ], [ -77.447668, 38.770973 ], [ -77.448061, 38.771089 ], [ -77.44847, 38.771193 ], [ -77.4488, 38.771266 ], [ -77.449181, 38.771339 ], [ -77.449632, 38.771405 ], [ -77.44986, 38.77143 ], [ -77.450154, 38.771466 ], [ -77.450632, 38.771507 ], [ -77.451131, 38.771563 ], [ -77.451607, 38.771632 ], [ -77.452264, 38.771742 ], [ -77.452327, 38.771741 ], [ -77.452419, 38.771723 ], [ -77.452489, 38.771693 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477337", "FULLNAME": "Moseby Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.466895, 38.7821 ], [ -77.46698, 38.782049 ], [ -77.467075, 38.782011 ], [ -77.467178, 38.781985 ], [ -77.467306, 38.781971 ], [ -77.467518, 38.781937 ], [ -77.467725, 38.781888 ], [ -77.468147, 38.781723 ], [ -77.468283, 38.781642 ], [ -77.468458, 38.781527 ], [ -77.468563, 38.781447 ], [ -77.468738, 38.781285 ], [ -77.468868, 38.78114 ], [ -77.469334, 38.780524 ], [ -77.469627, 38.780139 ], [ -77.469798, 38.779908 ], [ -77.470001, 38.779633 ], [ -77.470098, 38.779525 ], [ -77.47018, 38.779419 ], [ -77.470218, 38.779363 ], [ -77.470426, 38.778985 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477297", "FULLNAME": "Andrew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436332, 38.757695 ], [ -77.436311, 38.75777 ], [ -77.436306, 38.757796 ], [ -77.436286, 38.757913 ], [ -77.436286, 38.75793 ], [ -77.436284, 38.758028 ], [ -77.436214, 38.758383 ], [ -77.436195, 38.758583 ], [ -77.436193, 38.758743 ], [ -77.436215, 38.759019 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477389", "FULLNAME": "Matthew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426054, 38.758752 ], [ -77.426168, 38.758447 ], [ -77.42621, 38.758322 ], [ -77.426235, 38.758168 ], [ -77.426235, 38.75801 ], [ -77.426226, 38.757862 ], [ -77.426195, 38.757703 ], [ -77.426084, 38.757261 ], [ -77.426037, 38.757084 ], [ -77.426062, 38.7569 ], [ -77.426129, 38.756742 ], [ -77.426206, 38.756583 ], [ -77.426295, 38.756445 ], [ -77.426396, 38.756321 ], [ -77.42652, 38.756196 ], [ -77.426617, 38.756119 ], [ -77.426743, 38.756043 ], [ -77.426913, 38.755968 ], [ -77.427184, 38.755904 ], [ -77.427247, 38.755896 ], [ -77.42796, 38.755798 ], [ -77.428246, 38.75578 ], [ -77.428368, 38.755785 ], [ -77.428518, 38.755803 ], [ -77.428662, 38.755834 ], [ -77.428806, 38.75588 ], [ -77.428939, 38.755937 ], [ -77.429072, 38.756014 ], [ -77.429202, 38.756107 ], [ -77.429297, 38.756189 ], [ -77.429867, 38.756772 ], [ -77.430259, 38.757209 ], [ -77.430392, 38.757403 ], [ -77.430475, 38.757542 ], [ -77.43055, 38.757684 ], [ -77.430611, 38.757818 ], [ -77.430706, 38.758075 ], [ -77.430782, 38.758335 ], [ -77.430818, 38.758577 ], [ -77.430837, 38.758832 ], [ -77.430838, 38.759063 ], [ -77.430814, 38.759264 ], [ -77.430767, 38.759514 ], [ -77.430725, 38.759662 ], [ -77.430642, 38.759887 ], [ -77.430525, 38.760146 ], [ -77.430179, 38.760708 ], [ -77.429703, 38.761481 ], [ -77.42964, 38.761585 ], [ -77.429523, 38.76176 ], [ -77.429362, 38.761973 ], [ -77.429045, 38.762329 ], [ -77.428789, 38.762616 ], [ -77.427916, 38.763727 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477294", "FULLNAME": "Andrew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435801, 38.760594 ], [ -77.435779, 38.760627 ], [ -77.435735, 38.760713 ], [ -77.435681, 38.760904 ], [ -77.435621, 38.761224 ], [ -77.435882, 38.760982 ], [ -77.435941, 38.760921 ], [ -77.436027, 38.760813 ], [ -77.436097, 38.760698 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477423", "FULLNAME": "Railroad Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442259, 38.762602 ], [ -77.442123, 38.762611 ], [ -77.442057, 38.762624 ], [ -77.441997, 38.762635 ], [ -77.441975, 38.762641 ], [ -77.441924, 38.762655 ], [ -77.441889, 38.762665 ], [ -77.441768, 38.762714 ], [ -77.441671, 38.762778 ], [ -77.44156, 38.762866 ], [ -77.440937, 38.763447 ], [ -77.440743, 38.763628 ], [ -77.440685, 38.763692 ], [ -77.440625, 38.763779 ], [ -77.440575, 38.763892 ], [ -77.440565, 38.763934 ], [ -77.440552, 38.763992 ], [ -77.440549, 38.764082 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679538402", "FULLNAME": "Digital Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440129, 38.759876 ], [ -77.438963, 38.761226 ], [ -77.438796, 38.761588 ], [ -77.438664, 38.761935 ], [ -77.437723, 38.763304 ], [ -77.437667, 38.763394 ], [ -77.437562, 38.763598 ], [ -77.437421, 38.763939 ], [ -77.437316, 38.764151 ], [ -77.43708, 38.764556 ], [ -77.436863, 38.764913 ], [ -77.43665, 38.765185 ], [ -77.436515, 38.765346 ], [ -77.43623, 38.765731 ], [ -77.43607, 38.765847 ], [ -77.435859, 38.765933 ], [ -77.435558, 38.766047 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477405", "FULLNAME": "Burnside Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.446888, 38.768954 ], [ -77.447656, 38.769399 ], [ -77.447863, 38.76951 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477231", "FULLNAME": "Inyo Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447653, 38.768217 ], [ -77.448539, 38.767247 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678302380", "FULLNAME": "Elzey Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436239, 38.766071 ], [ -77.43627, 38.765984 ], [ -77.43634, 38.765873 ], [ -77.436844, 38.765766 ], [ -77.436979, 38.765743 ], [ -77.437052, 38.765838 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477394", "FULLNAME": "Sheldon St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.475875, 38.782789 ], [ -77.476102, 38.782762 ], [ -77.476293, 38.782754 ], [ -77.476394, 38.782761 ], [ -77.476593, 38.782791 ], [ -77.476754, 38.782831 ], [ -77.477284, 38.783006 ], [ -77.477454, 38.783083 ], [ -77.477583, 38.783161 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477361", "FULLNAME": "Travis St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.471702, 38.783669 ], [ -77.471875, 38.783629 ], [ -77.472109, 38.783546 ], [ -77.47299, 38.783219 ], [ -77.474264, 38.782745 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477430", "FULLNAME": "Englewood Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449779, 38.771857 ], [ -77.450009, 38.77196 ], [ -77.450573, 38.772277 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105045621608", "FULLNAME": "Kirby St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.464914, 38.776423 ], [ -77.464952, 38.776384 ], [ -77.464935, 38.776295 ], [ -77.464907, 38.776219 ], [ -77.46486, 38.776174 ], [ -77.463217, 38.775308 ], [ -77.463169, 38.7753 ], [ -77.46314, 38.77533 ], [ -77.463149, 38.775368 ], [ -77.463746, 38.776013 ], [ -77.463803, 38.776051 ], [ -77.464457, 38.776382 ], [ -77.464605, 38.776549 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678606081", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432808, 38.762667 ], [ -77.432872, 38.762862 ], [ -77.432976, 38.763129 ], [ -77.432983, 38.763183 ], [ -77.432972, 38.763236 ], [ -77.432854, 38.763422 ], [ -77.432621, 38.763826 ], [ -77.432576, 38.76387 ], [ -77.432517, 38.763901 ], [ -77.432291, 38.763962 ], [ -77.432225, 38.763966 ], [ -77.432161, 38.763956 ], [ -77.431866, 38.763836 ], [ -77.431833, 38.763808 ], [ -77.431815, 38.763773 ], [ -77.431814, 38.763735 ], [ -77.431962, 38.763361 ], [ -77.432228, 38.762968 ], [ -77.432274, 38.762919 ], [ -77.432454, 38.762783 ], [ -77.432539, 38.762729 ], [ -77.432615, 38.762694 ], [ -77.432703, 38.762673 ], [ -77.432808, 38.762667 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477501", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1780" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436055, 38.759288 ], [ -77.436094, 38.759489 ], [ -77.436107, 38.759738 ], [ -77.436132, 38.759771 ], [ -77.436167, 38.759788 ], [ -77.436332, 38.759825 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678290915", "FULLNAME": "Trailway Ter", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439235, 38.763465 ], [ -77.439084, 38.7635 ], [ -77.43904, 38.763535 ], [ -77.439028, 38.76358 ], [ -77.439151, 38.763964 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536475", "FULLNAME": "Handerson Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435832, 38.766261 ], [ -77.435922, 38.766361 ], [ -77.435943, 38.766425 ], [ -77.435931, 38.766477 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536474", "FULLNAME": "Handerson Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435931, 38.766477 ], [ -77.435956, 38.766544 ], [ -77.435962, 38.766608 ], [ -77.435955, 38.766671 ], [ -77.435916, 38.766753 ], [ -77.43563, 38.767201 ], [ -77.435593, 38.767282 ], [ -77.435562, 38.767371 ], [ -77.435532, 38.767449 ], [ -77.435498, 38.767479 ], [ -77.435437, 38.767493 ], [ -77.435323, 38.767503 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536540", "FULLNAME": "Corbett Cir", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435784, 38.767788 ], [ -77.436061, 38.767707 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477374", "FULLNAME": "Fairway Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427581, 38.769107 ], [ -77.427645, 38.769237 ], [ -77.427725, 38.76936 ], [ -77.427822, 38.769475 ], [ -77.427933, 38.769582 ], [ -77.428068, 38.769691 ], [ -77.428191, 38.76977 ], [ -77.428296, 38.769825 ], [ -77.428437, 38.769883 ], [ -77.428554, 38.769921 ], [ -77.428703, 38.769955 ], [ -77.428815, 38.76997 ], [ -77.428977, 38.769979 ], [ -77.430597, 38.769897 ], [ -77.43077, 38.769875 ], [ -77.430906, 38.769847 ], [ -77.431356, 38.769722 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477265", "FULLNAME": "Karen Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.424309, 38.767342 ], [ -77.424411, 38.767156 ], [ -77.424468, 38.767035 ], [ -77.424505, 38.766909 ], [ -77.424538, 38.766694 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477392", "FULLNAME": "Rosebud Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434293, 38.766318 ], [ -77.434222, 38.766035 ], [ -77.434251, 38.765894 ], [ -77.434322, 38.765607 ], [ -77.434339, 38.765461 ], [ -77.43434, 38.765343 ], [ -77.434324, 38.765199 ], [ -77.434287, 38.765065 ], [ -77.434233, 38.764933 ], [ -77.434176, 38.764832 ], [ -77.434101, 38.764744 ], [ -77.433971, 38.764624 ], [ -77.433841, 38.764531 ], [ -77.433762, 38.764493 ], [ -77.433676, 38.764469 ], [ -77.433652, 38.764466 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103677851221", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.431784, 38.761544 ], [ -77.431612, 38.761818 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081863073", "FULLNAME": "Belo Gate Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437051, 38.763476 ], [ -77.437168, 38.763222 ], [ -77.437216, 38.763154 ], [ -77.437478, 38.762787 ], [ -77.437534, 38.762701 ], [ -77.437534, 38.762658 ], [ -77.437478, 38.762606 ], [ -77.43672, 38.762365 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477247", "FULLNAME": "Yost St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.461766, 38.780908 ], [ -77.46082, 38.781938 ], [ -77.460795, 38.78196 ], [ -77.460722, 38.782009 ], [ -77.460644, 38.782045 ], [ -77.460538, 38.782077 ], [ -77.460441, 38.782099 ], [ -77.460309, 38.782113 ], [ -77.460163, 38.782111 ], [ -77.460038, 38.782094 ], [ -77.459529, 38.781952 ], [ -77.459115, 38.781859 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477261", "FULLNAME": "Evans St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.45606, 38.772631 ], [ -77.455962, 38.77274 ], [ -77.45588, 38.772858 ], [ -77.455815, 38.772981 ], [ -77.455784, 38.773071 ], [ -77.455762, 38.773186 ], [ -77.455759, 38.773278 ], [ -77.45578, 38.773388 ], [ -77.45581, 38.773474 ], [ -77.455862, 38.773577 ], [ -77.455903, 38.773638 ], [ -77.455992, 38.77374 ], [ -77.456096, 38.773832 ], [ -77.456207, 38.773908 ], [ -77.456375, 38.774006 ], [ -77.45645, 38.774045 ], [ -77.457818, 38.774801 ], [ -77.458471, 38.775156 ], [ -77.458954, 38.775408 ], [ -77.459047, 38.775439 ], [ -77.459145, 38.775457 ], [ -77.459246, 38.77546 ], [ -77.459326, 38.775453 ], [ -77.459709, 38.775379 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477554", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449483, 38.771942 ], [ -77.449112, 38.771731 ], [ -77.449081, 38.771728 ], [ -77.449054, 38.771739 ], [ -77.448967, 38.771826 ], [ -77.448964, 38.771848 ], [ -77.448975, 38.771864 ], [ -77.449319, 38.772054 ], [ -77.449361, 38.772054 ], [ -77.449386, 38.772043 ], [ -77.449483, 38.771942 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477420", "FULLNAME": "Overhill Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447193, 38.771587 ], [ -77.447359, 38.771423 ], [ -77.447489, 38.771287 ], [ -77.447569, 38.771181 ], [ -77.44762, 38.771091 ], [ -77.447668, 38.770973 ], [ -77.447763, 38.77081 ], [ -77.447957, 38.770435 ], [ -77.447998, 38.770342 ], [ -77.44803, 38.770259 ], [ -77.448184, 38.770076 ], [ -77.448212, 38.770042 ], [ -77.448455, 38.769791 ], [ -77.448896, 38.769299 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477440", "FULLNAME": "Sunnyside Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449653, 38.772043 ], [ -77.449483, 38.771942 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477436", "FULLNAME": "Saint Steven Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449837, 38.767495 ], [ -77.449496, 38.767305 ], [ -77.448814, 38.76692 ], [ -77.448492, 38.766737 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477295", "FULLNAME": "Andrew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436163, 38.757898 ], [ -77.436131, 38.758012 ], [ -77.436091, 38.758126 ], [ -77.436076, 38.758225 ], [ -77.436073, 38.758434 ], [ -77.43609, 38.758603 ], [ -77.436101, 38.75867 ], [ -77.436215, 38.759019 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105533752563", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438174, 38.758791 ], [ -77.438085, 38.758765 ], [ -77.437943, 38.758712 ], [ -77.437835, 38.75866 ], [ -77.437302, 38.75837 ], [ -77.437046, 38.758246 ], [ -77.436868, 38.758175 ], [ -77.436697, 38.758118 ], [ -77.436432, 38.758049 ], [ -77.436284, 38.758028 ], [ -77.436131, 38.758012 ], [ -77.435885, 38.757998 ], [ -77.435685, 38.757997 ], [ -77.435378, 38.75801 ], [ -77.435288, 38.758018 ], [ -77.435072, 38.758044 ], [ -77.434708, 38.758102 ], [ -77.434398, 38.758167 ], [ -77.434276, 38.758197 ], [ -77.43397, 38.758296 ], [ -77.433615, 38.758431 ], [ -77.433437, 38.758507 ], [ -77.433162, 38.758651 ], [ -77.432897, 38.758806 ], [ -77.432678, 38.758955 ], [ -77.43248, 38.759109 ], [ -77.432332, 38.759241 ], [ -77.432156, 38.759411 ], [ -77.431993, 38.759588 ], [ -77.431845, 38.759774 ], [ -77.431643, 38.760075 ], [ -77.431042, 38.761044 ], [ -77.430676, 38.76163 ], [ -77.430445, 38.761959 ], [ -77.430336, 38.762099 ], [ -77.43008, 38.762386 ], [ -77.429919, 38.762554 ], [ -77.429571, 38.762947 ], [ -77.429271, 38.763314 ], [ -77.428668, 38.764083 ], [ -77.428006, 38.764903 ], [ -77.427904, 38.765054 ], [ -77.427819, 38.765211 ], [ -77.42775, 38.765373 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081513518", "FULLNAME": "Euclid Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444875, 38.770495 ], [ -77.445052, 38.770305 ], [ -77.445212, 38.770157 ], [ -77.445526, 38.769785 ], [ -77.44566, 38.769628 ], [ -77.445797, 38.769467 ], [ -77.446437, 38.768766 ], [ -77.446615, 38.768571 ], [ -77.447189, 38.767956 ], [ -77.447225, 38.767912 ], [ -77.447381, 38.767721 ], [ -77.447529, 38.76754 ], [ -77.447938, 38.767083 ], [ -77.448269, 38.766657 ], [ -77.44854, 38.766223 ], [ -77.44855, 38.766171 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477299", "FULLNAME": "Colfax Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.471281, 38.782981 ], [ -77.471184, 38.78285 ], [ -77.470977, 38.782622 ], [ -77.470909, 38.782572 ], [ -77.47083, 38.782533 ], [ -77.470761, 38.782512 ], [ -77.470689, 38.782498 ], [ -77.470614, 38.782493 ], [ -77.470503, 38.782503 ], [ -77.470431, 38.782519 ], [ -77.470348, 38.782552 ], [ -77.470287, 38.782586 ], [ -77.470246, 38.782617 ], [ -77.469883, 38.78285 ], [ -77.469758, 38.782917 ], [ -77.469592, 38.782989 ], [ -77.469454, 38.783038 ], [ -77.469274, 38.783086 ], [ -77.469201, 38.783101 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477317", "FULLNAME": "Kristy Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435683, 38.763097 ], [ -77.436179, 38.762085 ], [ -77.436229, 38.761976 ], [ -77.436368, 38.761708 ], [ -77.436652, 38.761239 ], [ -77.436727, 38.761134 ], [ -77.436835, 38.760961 ], [ -77.437169, 38.760309 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477399", "FULLNAME": "William St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428539, 38.764024 ], [ -77.428299, 38.763914 ], [ -77.427916, 38.763727 ], [ -77.427575, 38.763558 ], [ -77.42744, 38.763507 ], [ -77.427328, 38.763475 ], [ -77.427182, 38.763448 ], [ -77.427034, 38.763435 ], [ -77.426864, 38.763435 ], [ -77.426706, 38.763447 ], [ -77.426554, 38.763469 ], [ -77.426387, 38.763507 ], [ -77.426179, 38.763571 ], [ -77.426037, 38.763626 ], [ -77.425869, 38.763706 ], [ -77.425711, 38.763799 ], [ -77.425548, 38.763919 ], [ -77.425427, 38.764024 ], [ -77.425297, 38.764148 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477221", "FULLNAME": "Jan St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430837, 38.758832 ], [ -77.4306, 38.758836 ], [ -77.430432, 38.758819 ], [ -77.430335, 38.758802 ], [ -77.430179, 38.758762 ], [ -77.43003, 38.75871 ], [ -77.429862, 38.758631 ], [ -77.429401, 38.758375 ], [ -77.429032, 38.758184 ], [ -77.428851, 38.758108 ], [ -77.4287, 38.758056 ], [ -77.428605, 38.758028 ], [ -77.428505, 38.758003 ], [ -77.42824, 38.757947 ], [ -77.427558, 38.757789 ], [ -77.426966, 38.757655 ], [ -77.426822, 38.757638 ], [ -77.426676, 38.757636 ], [ -77.426532, 38.757648 ], [ -77.42623, 38.757697 ], [ -77.426195, 38.757703 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103717088865", "FULLNAME": "Mathis Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.454562, 38.770155 ], [ -77.454598, 38.770114 ], [ -77.454779, 38.769907 ], [ -77.455013, 38.769635 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477509", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.42652, 38.756196 ], [ -77.426101, 38.75594 ], [ -77.425912, 38.755809 ], [ -77.425821, 38.755746 ], [ -77.425798, 38.75571 ], [ -77.425793, 38.75567 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081513591", "FULLNAME": "Birmingham Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427332, 38.753598 ], [ -77.426853, 38.754165 ], [ -77.426696, 38.754339 ], [ -77.426364, 38.754684 ], [ -77.426239, 38.754814 ], [ -77.426087, 38.75494 ], [ -77.425932, 38.755051 ], [ -77.425643, 38.755229 ], [ -77.425497, 38.755349 ], [ -77.42546, 38.755384 ], [ -77.425363, 38.755478 ], [ -77.425291, 38.755559 ], [ -77.425168, 38.755703 ], [ -77.425032, 38.755863 ], [ -77.424849, 38.756069 ], [ -77.424496, 38.756441 ], [ -77.424365, 38.756579 ], [ -77.4243, 38.756666 ], [ -77.424267, 38.756716 ], [ -77.424203, 38.756836 ], [ -77.424151, 38.756952 ], [ -77.424085, 38.757058 ], [ -77.424021, 38.757151 ], [ -77.423766, 38.757512 ], [ -77.423657, 38.757647 ], [ -77.423342, 38.75806 ], [ -77.423147, 38.758326 ], [ -77.422868, 38.758802 ], [ -77.422825, 38.75891 ], [ -77.422799, 38.759023 ], [ -77.422793, 38.759136 ], [ -77.422807, 38.759267 ], [ -77.42284, 38.759395 ], [ -77.422884, 38.759512 ], [ -77.422895, 38.759597 ], [ -77.422888, 38.759682 ], [ -77.422833, 38.759933 ], [ -77.422796, 38.760102 ], [ -77.422701, 38.760482 ], [ -77.422609, 38.760813 ], [ -77.422597, 38.760903 ], [ -77.422585, 38.760997 ], [ -77.422553, 38.761076 ], [ -77.422508, 38.761136 ], [ -77.422404, 38.761234 ], [ -77.42225, 38.761349 ], [ -77.422151, 38.761413 ], [ -77.421949, 38.761534 ], [ -77.42157, 38.761762 ], [ -77.421359, 38.761876 ], [ -77.420682, 38.762242 ], [ -77.420581, 38.762287 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477451", "FULLNAME": "Greenshire Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428539, 38.764024 ], [ -77.428668, 38.764083 ], [ -77.428839, 38.764169 ], [ -77.429024, 38.764278 ], [ -77.42933, 38.764492 ], [ -77.429522, 38.764628 ], [ -77.42966, 38.764704 ], [ -77.429777, 38.764756 ], [ -77.429925, 38.764808 ], [ -77.430057, 38.764841 ], [ -77.430166, 38.764857 ], [ -77.430305, 38.764864 ], [ -77.430456, 38.764856 ], [ -77.4306, 38.764858 ], [ -77.430729, 38.764871 ], [ -77.430824, 38.764894 ], [ -77.430911, 38.764931 ], [ -77.430974, 38.76497 ], [ -77.431013, 38.765006 ], [ -77.431064, 38.765073 ], [ -77.431099, 38.765146 ], [ -77.431116, 38.765245 ], [ -77.431112, 38.765303 ], [ -77.43109, 38.76537 ], [ -77.431052, 38.765432 ], [ -77.430998, 38.765486 ], [ -77.430923, 38.765539 ], [ -77.430855, 38.765572 ], [ -77.430763, 38.765603 ], [ -77.430665, 38.765621 ], [ -77.430474, 38.76563 ], [ -77.430345, 38.765635 ], [ -77.429656, 38.765639 ], [ -77.429386, 38.765648 ], [ -77.42909, 38.765657 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679538423", "FULLNAME": "Black Hawk Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432808, 38.762667 ], [ -77.432872, 38.762862 ], [ -77.432976, 38.763129 ], [ -77.432983, 38.763183 ], [ -77.432972, 38.763236 ], [ -77.432854, 38.763422 ], [ -77.432621, 38.763826 ], [ -77.432576, 38.76387 ], [ -77.432517, 38.763901 ], [ -77.432291, 38.763962 ], [ -77.432225, 38.763966 ], [ -77.432161, 38.763956 ], [ -77.431866, 38.763836 ], [ -77.431833, 38.763808 ], [ -77.431815, 38.763773 ], [ -77.431814, 38.763735 ], [ -77.431962, 38.763361 ], [ -77.432228, 38.762968 ], [ -77.432274, 38.762919 ], [ -77.432454, 38.762783 ], [ -77.432539, 38.762729 ], [ -77.432615, 38.762694 ], [ -77.432703, 38.762673 ], [ -77.432808, 38.762667 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477227", "FULLNAME": "Gary Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429931, 38.767644 ], [ -77.430695, 38.767109 ], [ -77.431207, 38.766744 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477336", "FULLNAME": "Moseby Ct", "RTTYP": "M", "MTFCC": "S1500" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.470098, 38.779525 ], [ -77.47007, 38.779466 ], [ -77.470025, 38.779415 ], [ -77.469966, 38.779373 ], [ -77.469878, 38.779334 ], [ -77.469766, 38.779297 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477277", "FULLNAME": "Owens Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442494, 38.772376 ], [ -77.442357, 38.77228 ], [ -77.441489, 38.771661 ], [ -77.441089, 38.771385 ], [ -77.440946, 38.771307 ], [ -77.44085, 38.771264 ], [ -77.440705, 38.771214 ], [ -77.440554, 38.771177 ], [ -77.440399, 38.771153 ], [ -77.440273, 38.771144 ], [ -77.440132, 38.771146 ], [ -77.439937, 38.771166 ], [ -77.439746, 38.771199 ], [ -77.43956, 38.771246 ], [ -77.439449, 38.771286 ], [ -77.439355, 38.771336 ], [ -77.439295, 38.771375 ], [ -77.439178, 38.771464 ], [ -77.439057, 38.771573 ], [ -77.439012, 38.771619 ], [ -77.438884, 38.771773 ], [ -77.43877, 38.771891 ], [ -77.438645, 38.771983 ], [ -77.438509, 38.772064 ], [ -77.438361, 38.772134 ], [ -77.438109, 38.772225 ], [ -77.437904, 38.772283 ], [ -77.437692, 38.772327 ], [ -77.437477, 38.772357 ], [ -77.437229, 38.772375 ], [ -77.436964, 38.772417 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477400", "FULLNAME": "Woodhue Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449371, 38.770783 ], [ -77.449963, 38.770864 ], [ -77.450768, 38.770941 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477541", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447086, 38.768744 ], [ -77.446888, 38.768954 ], [ -77.446698, 38.769155 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477253", "FULLNAME": "Baker St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.478093, 38.782358 ], [ -77.477799, 38.782891 ], [ -77.477706, 38.783021 ], [ -77.477583, 38.783161 ], [ -77.477366, 38.7834 ], [ -77.476858, 38.78392 ], [ -77.47632, 38.784481 ], [ -77.475915, 38.784899 ], [ -77.475675, 38.785142 ], [ -77.475272, 38.785572 ], [ -77.474925, 38.785923 ], [ -77.474917, 38.78596 ], [ -77.47493, 38.785989 ], [ -77.474951, 38.786008 ], [ -77.475188, 38.78614 ], [ -77.475357, 38.786233 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477292", "FULLNAME": "Alpine St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.47299, 38.783219 ], [ -77.473133, 38.783463 ], [ -77.473241, 38.783683 ], [ -77.473259, 38.78377 ], [ -77.473258, 38.783859 ], [ -77.473238, 38.783947 ], [ -77.473199, 38.784031 ], [ -77.472848, 38.784689 ], [ -77.47277, 38.784875 ], [ -77.472722, 38.785028 ], [ -77.472694, 38.785209 ], [ -77.472641, 38.785824 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477330", "FULLNAME": "Meeker St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.471599, 38.785764 ], [ -77.472641, 38.785824 ], [ -77.473692, 38.785886 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477449", "FULLNAME": "Enterprise Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437999, 38.776029 ], [ -77.437913, 38.775921 ], [ -77.437817, 38.775817 ], [ -77.437569, 38.775575 ], [ -77.437385, 38.775416 ], [ -77.437187, 38.775267 ], [ -77.437063, 38.775183 ], [ -77.436653, 38.77493 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679123999", "FULLNAME": "Conner Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.445641, 38.765376 ], [ -77.44563, 38.765371 ], [ -77.445464, 38.765299 ], [ -77.444956, 38.765085 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105045631564", "FULLNAME": "Euclid Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444875, 38.770495 ], [ -77.444781, 38.770593 ], [ -77.444586, 38.7708 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679537852", "FULLNAME": "Elm Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438867, 38.762093 ], [ -77.438825, 38.762137 ], [ -77.438787, 38.762179 ], [ -77.438751, 38.762216 ], [ -77.438707, 38.762264 ], [ -77.438663, 38.762315 ], [ -77.438636, 38.762355 ], [ -77.438597, 38.762406 ], [ -77.43857, 38.762447 ], [ -77.438541, 38.762488 ], [ -77.438499, 38.762557 ], [ -77.438467, 38.762601 ], [ -77.438437, 38.762645 ], [ -77.438406, 38.76269 ], [ -77.438378, 38.762734 ], [ -77.438355, 38.762779 ], [ -77.438341, 38.762824 ], [ -77.438344, 38.762873 ], [ -77.438373, 38.762923 ], [ -77.438426, 38.762967 ], [ -77.438491, 38.763007 ], [ -77.438601, 38.763059 ], [ -77.438691, 38.763101 ], [ -77.438756, 38.763135 ], [ -77.438865, 38.763188 ], [ -77.438925, 38.763211 ], [ -77.439013, 38.76322 ], [ -77.439061, 38.763195 ], [ -77.439106, 38.763156 ], [ -77.439143, 38.76311 ], [ -77.43918, 38.763065 ], [ -77.439213, 38.763022 ], [ -77.439274, 38.762944 ], [ -77.439305, 38.762905 ], [ -77.439337, 38.762858 ], [ -77.439566, 38.762568 ], [ -77.439601, 38.762425 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477315", "FULLNAME": "Joshua Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425848, 38.767432 ], [ -77.425914, 38.767645 ], [ -77.426033, 38.767976 ], [ -77.426128, 38.768175 ], [ -77.426225, 38.768335 ], [ -77.426291, 38.768425 ], [ -77.426358, 38.768486 ], [ -77.426435, 38.768535 ], [ -77.426455, 38.768544 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477369", "FULLNAME": "Cynthia St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.42765, 38.767308 ], [ -77.427269, 38.76727 ], [ -77.427057, 38.767256 ], [ -77.426901, 38.767255 ], [ -77.426846, 38.767258 ], [ -77.426668, 38.767273 ], [ -77.426515, 38.767297 ], [ -77.426015, 38.767403 ], [ -77.425848, 38.767432 ], [ -77.425512, 38.767487 ], [ -77.425271, 38.767497 ], [ -77.425051, 38.767492 ], [ -77.424834, 38.767465 ], [ -77.424595, 38.767421 ], [ -77.42441, 38.767375 ], [ -77.424309, 38.767342 ], [ -77.424116, 38.767269 ], [ -77.423956, 38.767197 ], [ -77.423616, 38.767007 ], [ -77.423139, 38.766732 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477422", "FULLNAME": "Primrose Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434083, 38.763984 ], [ -77.433823, 38.764192 ], [ -77.433652, 38.764466 ], [ -77.433543, 38.764466 ], [ -77.433446, 38.764483 ], [ -77.433351, 38.764515 ], [ -77.433265, 38.764561 ], [ -77.433193, 38.764619 ], [ -77.433144, 38.764692 ], [ -77.433115, 38.764772 ], [ -77.433106, 38.764853 ], [ -77.433124, 38.765012 ], [ -77.433139, 38.765041 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536132", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.431974, 38.761892 ], [ -77.431848, 38.761862 ], [ -77.431612, 38.761818 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477513", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435683, 38.763097 ], [ -77.435626, 38.763214 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081861017", "FULLNAME": "Sandra Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437216, 38.763154 ], [ -77.436436, 38.762899 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081861195", "FULLNAME": "Isabel Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437664, 38.75945 ], [ -77.437261, 38.760201 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477325", "FULLNAME": "Martin Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.465827, 38.780285 ], [ -77.465789, 38.780289 ], [ -77.465556, 38.780295 ], [ -77.465362, 38.780285 ], [ -77.465214, 38.78026 ], [ -77.465128, 38.780238 ], [ -77.465016, 38.780202 ], [ -77.464883, 38.780145 ], [ -77.464215, 38.779788 ], [ -77.463571, 38.779416 ], [ -77.462344, 38.778764 ], [ -77.46225, 38.778733 ], [ -77.462151, 38.778717 ], [ -77.46205, 38.778716 ], [ -77.461982, 38.77873 ], [ -77.461895, 38.778756 ], [ -77.461792, 38.7788 ], [ -77.461191, 38.779166 ], [ -77.461024, 38.77927 ], [ -77.4609, 38.779365 ], [ -77.46079, 38.779471 ], [ -77.460698, 38.77958 ], [ -77.460609, 38.779719 ], [ -77.460563, 38.779816 ], [ -77.460525, 38.779954 ], [ -77.460505, 38.780095 ], [ -77.460466, 38.780507 ], [ -77.460455, 38.780627 ], [ -77.460362, 38.781308 ], [ -77.460331, 38.781648 ], [ -77.460309, 38.782113 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477375", "FULLNAME": "Forrest St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.45922, 38.773651 ], [ -77.459429, 38.773675 ], [ -77.459594, 38.773705 ], [ -77.460013, 38.773798 ], [ -77.46013, 38.773843 ], [ -77.460238, 38.773899 ], [ -77.460317, 38.773954 ], [ -77.460404, 38.774037 ], [ -77.460475, 38.774129 ], [ -77.460499, 38.774167 ], [ -77.460584, 38.774353 ], [ -77.460997, 38.775308 ], [ -77.461554, 38.776632 ], [ -77.461615, 38.776818 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477236", "FULLNAME": "Luke Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.424531, 38.757467 ], [ -77.424783, 38.757577 ], [ -77.424987, 38.7577 ], [ -77.425152, 38.757853 ], [ -77.425216, 38.758035 ], [ -77.42525, 38.758219 ], [ -77.425234, 38.758311 ], [ -77.425196, 38.758379 ], [ -77.425071, 38.758441 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477542", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.472593, 38.781675 ], [ -77.471113, 38.781755 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477279", "FULLNAME": "Payne Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428507, 38.76731 ], [ -77.428547, 38.76701 ], [ -77.428596, 38.766563 ], [ -77.428611, 38.766414 ], [ -77.428603, 38.766331 ], [ -77.428577, 38.76625 ], [ -77.428554, 38.766204 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103947052953", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440417, 38.760036 ], [ -77.440187, 38.759908 ], [ -77.440129, 38.759876 ], [ -77.438736, 38.759103 ], [ -77.438499, 38.758971 ], [ -77.438266, 38.758842 ], [ -77.438174, 38.758791 ], [ -77.438125, 38.758729 ], [ -77.438052, 38.758662 ], [ -77.437522, 38.758346 ], [ -77.437284, 38.758221 ], [ -77.436986, 38.758088 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477446", "FULLNAME": "Cartwright Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.44967, 38.769636 ], [ -77.450448, 38.770066 ], [ -77.450782, 38.770246 ], [ -77.450831, 38.770261 ], [ -77.45105, 38.770264 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477552", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448896, 38.769299 ], [ -77.449117, 38.769409 ], [ -77.449149, 38.76941 ], [ -77.449172, 38.7694 ], [ -77.449252, 38.769309 ], [ -77.449251, 38.76929 ], [ -77.449235, 38.769276 ], [ -77.448961, 38.769127 ], [ -77.448926, 38.769124 ], [ -77.448894, 38.769135 ], [ -77.448863, 38.769163 ], [ -77.448847, 38.7692 ], [ -77.448849, 38.769239 ], [ -77.448863, 38.769269 ], [ -77.448896, 38.769299 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106092774118", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452262, 38.773445 ], [ -77.4521, 38.773417 ], [ -77.451845, 38.7734 ], [ -77.451762, 38.773401 ], [ -77.451724, 38.773406 ], [ -77.451637, 38.773407 ], [ -77.451324, 38.773444 ], [ -77.451193, 38.77348 ], [ -77.450863, 38.773634 ], [ -77.450804, 38.773655 ], [ -77.450687, 38.773675 ], [ -77.45055, 38.773686 ], [ -77.450266, 38.773705 ], [ -77.449952, 38.77365 ], [ -77.4499, 38.773626 ], [ -77.449342, 38.773371 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678302281", "FULLNAME": "Walker Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436239, 38.766071 ], [ -77.435998, 38.766123 ], [ -77.435832, 38.766261 ], [ -77.435668, 38.766183 ], [ -77.435558, 38.766047 ], [ -77.435388, 38.765846 ], [ -77.435434, 38.765719 ], [ -77.435487, 38.765676 ], [ -77.435699, 38.765611 ], [ -77.435843, 38.765534 ], [ -77.435888, 38.765481 ], [ -77.436026, 38.765318 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477340", "FULLNAME": "Pierce St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.463824, 38.784982 ], [ -77.464066, 38.785257 ], [ -77.464423, 38.785682 ], [ -77.464929, 38.786267 ], [ -77.465187, 38.786577 ], [ -77.465612, 38.78706 ], [ -77.465659, 38.787098 ], [ -77.465714, 38.787129 ], [ -77.465761, 38.78715 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477409", "FULLNAME": "Industry Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440025, 38.775951 ], [ -77.439513, 38.775867 ], [ -77.439433, 38.77585 ], [ -77.43923, 38.775818 ], [ -77.439024, 38.7758 ], [ -77.438817, 38.775797 ], [ -77.438652, 38.775805 ], [ -77.438557, 38.775821 ], [ -77.438431, 38.775849 ], [ -77.43828, 38.775896 ], [ -77.438136, 38.775956 ], [ -77.437999, 38.776029 ], [ -77.437898, 38.776097 ], [ -77.437767, 38.776209 ], [ -77.437696, 38.77628 ], [ -77.437531, 38.776504 ], [ -77.437235, 38.776969 ], [ -77.437176, 38.777054 ], [ -77.437, 38.777285 ], [ -77.436818, 38.777491 ], [ -77.436622, 38.777686 ], [ -77.436413, 38.777872 ], [ -77.436325, 38.777943 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106087402596", "FULLNAME": "Blooms Quarry Rd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449342, 38.773371 ], [ -77.448149, 38.772854 ], [ -77.447605, 38.772596 ], [ -77.447595, 38.772589 ], [ -77.447306, 38.772374 ], [ -77.447053, 38.772181 ], [ -77.446793, 38.771992 ], [ -77.446049, 38.771417 ], [ -77.445275, 38.770795 ], [ -77.44504, 38.770607 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105045621397", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1750" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426425, 38.76296 ], [ -77.426192, 38.76279 ], [ -77.426047, 38.762675 ], [ -77.425787, 38.762506 ], [ -77.425479, 38.762346 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477495", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449646, 38.768411 ], [ -77.44997, 38.768377 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106092771930", "FULLNAME": "Elm Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440031, 38.762656 ], [ -77.439933, 38.76266 ], [ -77.439898, 38.76251 ], [ -77.439784, 38.762428 ], [ -77.439601, 38.762425 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477398", "FULLNAME": "Venture Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439449, 38.771286 ], [ -77.439071, 38.770792 ], [ -77.438874, 38.77056 ], [ -77.438629, 38.7703 ], [ -77.438569, 38.770229 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477516", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.43152, 38.768474 ], [ -77.431714, 38.767778 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477266", "FULLNAME": "Kevin Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427247, 38.755896 ], [ -77.427169, 38.755832 ], [ -77.427133, 38.75578 ], [ -77.427056, 38.755462 ], [ -77.427052, 38.755356 ], [ -77.427061, 38.755272 ], [ -77.427087, 38.755172 ], [ -77.427122, 38.755087 ], [ -77.427185, 38.754993 ], [ -77.427281, 38.754891 ], [ -77.427357, 38.754831 ], [ -77.427492, 38.754744 ], [ -77.427561, 38.754675 ], [ -77.427595, 38.75463 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106087387886", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.42775, 38.765373 ], [ -77.427705, 38.765583 ], [ -77.427678, 38.765795 ], [ -77.42767, 38.766008 ], [ -77.4277, 38.7666 ], [ -77.427698, 38.766804 ], [ -77.427688, 38.766956 ], [ -77.42765, 38.767308 ], [ -77.427592, 38.767852 ], [ -77.427496, 38.76868 ], [ -77.427503, 38.768824 ], [ -77.427522, 38.768928 ], [ -77.427561, 38.769057 ], [ -77.427581, 38.769107 ], [ -77.427645, 38.769237 ], [ -77.427725, 38.76936 ], [ -77.427822, 38.769475 ], [ -77.427933, 38.769582 ], [ -77.428068, 38.769691 ], [ -77.428191, 38.76977 ], [ -77.428296, 38.769825 ], [ -77.428437, 38.769883 ], [ -77.428554, 38.769921 ], [ -77.428703, 38.769955 ], [ -77.428815, 38.76997 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477385", "FULLNAME": "Katelyn Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425314, 38.769508 ], [ -77.424957, 38.769383 ], [ -77.424572, 38.769234 ], [ -77.424451, 38.769175 ], [ -77.424289, 38.769081 ], [ -77.424166, 38.768987 ], [ -77.424077, 38.768906 ], [ -77.423997, 38.768819 ], [ -77.423909, 38.7687 ], [ -77.423837, 38.768575 ], [ -77.423746, 38.76835 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678610025", "FULLNAME": "Wigfall Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434888, 38.767014 ], [ -77.434616, 38.766919 ], [ -77.434518, 38.766895 ], [ -77.434481, 38.766912 ], [ -77.434442, 38.766976 ], [ -77.434218, 38.767461 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536130", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430993, 38.763225 ], [ -77.430671, 38.763074 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103677851287", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430671, 38.763074 ], [ -77.430426, 38.762958 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081863072", "FULLNAME": "Belo Gate Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437051, 38.763476 ], [ -77.436952, 38.763666 ], [ -77.436789, 38.764096 ], [ -77.436698, 38.764286 ], [ -77.436644, 38.76436 ], [ -77.436616, 38.764402 ], [ -77.436336, 38.764747 ], [ -77.435828, 38.764536 ], [ -77.435734, 38.764514 ], [ -77.435639, 38.764544 ], [ -77.435416, 38.764819 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081861019", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436644, 38.76436 ], [ -77.435846, 38.764118 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081861175", "FULLNAME": "Alexander Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436572, 38.760015 ], [ -77.436614, 38.759838 ], [ -77.436604, 38.759647 ], [ -77.436567, 38.759223 ] ] } } +] +} diff --git a/tests/tl_2018_51685_roads/out/-Z11_-z11_--no-simplification-of-shared-nodes.json b/tests/tl_2018_51685_roads/out/-Z11_-z11_--no-simplification-of-shared-nodes.json new file mode 100644 index 0000000..067d0cf --- /dev/null +++ b/tests/tl_2018_51685_roads/out/-Z11_-z11_--no-simplification-of-shared-nodes.json @@ -0,0 +1,529 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-77.478795,38.753598,-77.420581,38.788391", +"center": "-77.431641,38.754050,11", +"description": "tests/tl_2018_51685_roads/out/-Z11_-z11_--no-simplification-of-shared-nodes.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/tl_2018_51685_roads/out/-Z11_-z11_--no-simplification-of-shared-nodes.json.check.mbtiles -Z11 -z11 --no-simplification-of-shared-nodes tests/tl_2018_51685_roads/in.json", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 11, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 256,\"geometry\": \"LineString\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"FULLNAME\",\"count\": 166,\"type\": \"string\",\"values\": [\"Adams St\",\"Alexa Ct\",\"Alexander Way\",\"Alpine St\",\"Andrew Dr\",\"Anna Ct\",\"Arnie Ct\",\"Baker St\",\"Bank St\",\"Battalion Way\",\"Becky Ct\",\"Belo Gate Dr\",\"Birmingham Dr\",\"Black Hawk Ct\",\"Blooms Quarry Ln\",\"Blooms Quarry Rd\",\"Bradley Ct\",\"Brandon St\",\"Brian Ct\",\"Burnside Ct\",\"Cabbel Dr\",\"Cartwright Ct\",\"Centreville Rd\",\"Christopher Ln\",\"Colburn Dr\",\"Colfax Ct\",\"Colfax Dr\",\"Conner Dr\",\"Corbett Cir\",\"Corbett Pl\",\"Cougar Ct\",\"Courtney Dr\",\"Creek View Ter\",\"Crozet St\",\"Cynthia St\",\"Deborah Ct\",\"Denver Dr\",\"Digital Dr\",\"Drake Ct\",\"E Carondelet Dr\",\"Eagle Ct\",\"Elise Ct\",\"Elizabeth Ct\",\"Elm Ct\",\"Elzey Pl\",\"Englewood Ct\",\"Enterprise Ct\",\"Euclid Ave\",\"Euclid Ct\",\"Evans St\",\"Fairway Ct\",\"Forrest St\",\"Franklin Way\",\"Gary Ct\",\"General Way\",\"Golf Ct\",\"Greenshire Dr\",\"Hamilton Ct\",\"Handerson Pl\",\"Hardees Dr\",\"Heather Ct\",\"Hedgeford St\",\"Holden Dr\",\"Holmes Pl\",\"Industry Dr\",\"Inyo Pl\",\"Isabel Ln\",\"Jack Dr\",\"Jan St\",\"Jenkins Ct\",\"Jenna Ct\",\"Jessica Ct\",\"Jessica Dr\",\"Joshua Ct\",\"Karen Ct\",\"Katelyn Ct\",\"Kent Dr\",\"Kevin Ct\",\"Kirby St\",\"Kristy Dr\",\"Lambert Dr\",\"Lanae Ln\",\"Lapaz Ct\",\"Laurie Ct\",\"Liberty St\",\"Lindsey Ln\",\"Locust Ter\",\"Luke Dr\",\"Luxor St\",\"Mace St\",\"Madera Ct\",\"Manassas Dr\",\"Maria Way\",\"Market St\",\"Martin Ct\",\"Martin Dr\",\"Mathis Ave\",\"Matthew Dr\",\"Meeker Ct\",\"Meeker St\"]},{\"attribute\": \"LINEARID\",\"count\": 256,\"type\": \"string\",\"values\": [\"1101168884340\",\"1102214409896\",\"1102214411210\",\"1102855552280\",\"1103677851221\",\"1103677851287\",\"1103677851474\",\"1103677851555\",\"1103677851594\",\"1103677851647\",\"1103678290915\",\"1103678292796\",\"1103678293384\",\"1103678293757\",\"1103678302281\",\"1103678302380\",\"1103678302491\",\"1103678302854\",\"1103678302955\",\"1103678303567\",\"1103678306484\",\"1103678606039\",\"1103678606081\",\"1103678606144\",\"1103678610025\",\"1103678610426\",\"1103679090051\",\"1103679094720\",\"1103679106335\",\"1103679123999\",\"1103679536091\",\"1103679536111\",\"1103679536124\",\"1103679536129\",\"1103679536130\",\"1103679536131\",\"1103679536132\",\"1103679536161\",\"1103679536473\",\"1103679536474\",\"1103679536475\",\"1103679536539\",\"1103679536540\",\"1103679536656\",\"1103679536679\",\"1103679536695\",\"1103679537849\",\"1103679537852\",\"1103679537853\",\"1103679538189\",\"1103679538309\",\"1103679538402\",\"1103679538404\",\"1103679538422\",\"1103679538423\",\"1103691411843\",\"1103717088865\",\"1103717088866\",\"1103947052953\",\"1103947052954\",\"110410477217\",\"110410477221\",\"110410477224\",\"110410477227\",\"110410477229\",\"110410477231\",\"110410477232\",\"110410477234\",\"110410477235\",\"110410477236\",\"110410477238\",\"110410477239\",\"110410477240\",\"110410477241\",\"110410477244\",\"110410477245\",\"110410477247\",\"110410477249\",\"110410477250\",\"110410477252\",\"110410477253\",\"110410477254\",\"110410477256\",\"110410477257\",\"110410477258\",\"110410477260\",\"110410477261\",\"110410477263\",\"110410477265\",\"110410477266\",\"110410477270\",\"110410477271\",\"110410477273\",\"110410477274\",\"110410477275\",\"110410477277\",\"110410477278\",\"110410477279\",\"110410477280\",\"110410477284\"]},{\"attribute\": \"MTFCC\",\"count\": 7,\"type\": \"string\",\"values\": [\"S1200\",\"S1400\",\"S1500\",\"S1640\",\"S1740\",\"S1750\",\"S1780\"]},{\"attribute\": \"RTTYP\",\"count\": 2,\"type\": \"string\",\"values\": [\"M\",\"S\"]}]}]}}", +"maxzoom": "11", +"minzoom": "11", +"name": "tests/tl_2018_51685_roads/out/-Z11_-z11_--no-simplification-of-shared-nodes.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 583, "y": 784 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "110410477253", "FULLNAME": "Baker St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.478118, 38.782391 ], [ -77.477603, 38.783194 ], [ -77.476358, 38.784498 ], [ -77.474942, 38.785937 ], [ -77.474985, 38.786037 ], [ -77.475371, 38.786238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477381", "FULLNAME": "Jenkins Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.476358, 38.784498 ], [ -77.475843, 38.784197 ], [ -77.475672, 38.784197 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477238", "FULLNAME": "Mace St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.478290, 38.781989 ], [ -77.478118, 38.782391 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477394", "FULLNAME": "Sheldon St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.475886, 38.782792 ], [ -77.476616, 38.782792 ], [ -77.477474, 38.783093 ], [ -77.477603, 38.783194 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477239", "FULLNAME": "Mace St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.476058, 38.781287 ], [ -77.475886, 38.781655 ], [ -77.475758, 38.782090 ], [ -77.475886, 38.782792 ], [ -77.476015, 38.783394 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477234", "FULLNAME": "Kent Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.473783, 38.782023 ], [ -77.473869, 38.782056 ], [ -77.474298, 38.782759 ], [ -77.474599, 38.783294 ], [ -77.474599, 38.783562 ], [ -77.473783, 38.785167 ], [ -77.473698, 38.785903 ], [ -77.473612, 38.786506 ], [ -77.473311, 38.786807 ], [ -77.472839, 38.787576 ], [ -77.472839, 38.787609 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477292", "FULLNAME": "Alpine St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.473011, 38.783227 ], [ -77.473269, 38.783696 ], [ -77.473269, 38.783963 ], [ -77.472796, 38.784900 ], [ -77.472668, 38.785836 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477330", "FULLNAME": "Meeker St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.471638, 38.785770 ], [ -77.472668, 38.785836 ], [ -77.473698, 38.785903 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477300", "FULLNAME": "Colfax Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.471294, 38.782993 ], [ -77.471638, 38.783461 ], [ -77.471724, 38.783696 ], [ -77.471766, 38.784298 ], [ -77.471638, 38.785770 ], [ -77.471552, 38.786372 ], [ -77.471595, 38.786539 ], [ -77.471895, 38.786873 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477328", "FULLNAME": "Meeker Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.470737, 38.784699 ], [ -77.470565, 38.785067 ], [ -77.470565, 38.785234 ], [ -77.470694, 38.785469 ], [ -77.471123, 38.785736 ], [ -77.471638, 38.785770 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477361", "FULLNAME": "Travis St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.471724, 38.783696 ], [ -77.473011, 38.783227 ], [ -77.474298, 38.782759 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477527", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.473783, 38.782023 ], [ -77.473183, 38.781019 ], [ -77.472839, 38.780785 ], [ -77.472196, 38.780551 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477299", "FULLNAME": "Colfax Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.471294, 38.782993 ], [ -77.470951, 38.782592 ], [ -77.470779, 38.782525 ], [ -77.470436, 38.782525 ], [ -77.469792, 38.782926 ], [ -77.469234, 38.783127 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477542", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.472625, 38.781688 ], [ -77.471123, 38.781755 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477257", "FULLNAME": "Drake Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.469749, 38.786405 ], [ -77.468934, 38.786673 ], [ -77.468204, 38.786740 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536695", "FULLNAME": "Denver Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.469621, 38.784063 ], [ -77.469578, 38.784532 ], [ -77.468805, 38.785268 ], [ -77.468333, 38.785703 ], [ -77.467475, 38.786204 ], [ -77.466574, 38.786673 ], [ -77.466059, 38.786940 ], [ -77.465801, 38.787175 ], [ -77.465630, 38.787342 ], [ -77.465544, 38.787476 ], [ -77.465458, 38.787910 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679538309", "FULLNAME": "Rugby Rd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.458549, 38.787409 ], [ -77.459750, 38.787509 ], [ -77.465458, 38.787910 ], [ -77.470050, 38.788212 ], [ -77.473011, 38.788412 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477314", "FULLNAME": "Holden Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.460737, 38.786639 ], [ -77.460823, 38.786773 ], [ -77.461209, 38.787007 ], [ -77.461510, 38.787074 ], [ -77.462583, 38.787141 ], [ -77.464042, 38.787241 ], [ -77.465630, 38.787342 ], [ -77.470136, 38.787643 ], [ -77.470522, 38.787676 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477363", "FULLNAME": "Walden St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.465630, 38.784063 ], [ -77.467475, 38.786204 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477340", "FULLNAME": "Pierce St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.463827, 38.785000 ], [ -77.465200, 38.786606 ], [ -77.465630, 38.787074 ], [ -77.465801, 38.787175 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477396", "FULLNAME": "Tremont St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.466574, 38.786673 ], [ -77.464728, 38.784532 ], [ -77.464299, 38.784030 ], [ -77.464299, 38.783963 ], [ -77.464428, 38.783796 ], [ -77.464643, 38.783696 ], [ -77.464900, 38.783662 ], [ -77.465158, 38.783495 ], [ -77.465715, 38.782926 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536679", "FULLNAME": "Lambert Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.460480, 38.780517 ], [ -77.461123, 38.780618 ], [ -77.461767, 38.780919 ], [ -77.463269, 38.781755 ], [ -77.464128, 38.782023 ], [ -77.465715, 38.782926 ], [ -77.466187, 38.783194 ], [ -77.466531, 38.783595 ], [ -77.467132, 38.784197 ], [ -77.468805, 38.785268 ], [ -77.469277, 38.785669 ], [ -77.469749, 38.786405 ], [ -77.470136, 38.787141 ], [ -77.470136, 38.787643 ], [ -77.470050, 38.788212 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477235", "FULLNAME": "Kent Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.467647, 38.782792 ], [ -77.468462, 38.782525 ], [ -77.469792, 38.781889 ], [ -77.471123, 38.781755 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477337", "FULLNAME": "Moseby Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.466917, 38.782123 ], [ -77.467089, 38.782023 ], [ -77.467561, 38.781956 ], [ -77.468162, 38.781755 ], [ -77.468762, 38.781287 ], [ -77.469363, 38.780551 ], [ -77.470007, 38.779648 ], [ -77.470136, 38.779547 ], [ -77.470436, 38.779012 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477331", "FULLNAME": "Morton Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.467132, 38.781086 ], [ -77.467518, 38.780919 ], [ -77.467818, 38.780417 ], [ -77.468376, 38.779982 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477323", "FULLNAME": "Martin Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.466917, 38.780216 ], [ -77.465844, 38.780317 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477406", "FULLNAME": "Courtney Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.465758, 38.779313 ], [ -77.465844, 38.780317 ], [ -77.466230, 38.781922 ], [ -77.466187, 38.782290 ], [ -77.466016, 38.782592 ], [ -77.465715, 38.782926 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477336", "FULLNAME": "Moseby Ct", "RTTYP": "M", "MTFCC": "S1500" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.470136, 38.779547 ], [ -77.470007, 38.779380 ], [ -77.469792, 38.779313 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477335", "FULLNAME": "Moseby Ct", "RTTYP": "M", "MTFCC": "S1500" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.469792, 38.779313 ], [ -77.469878, 38.778978 ], [ -77.469578, 38.778845 ], [ -77.469492, 38.778711 ], [ -77.469149, 38.778510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477334", "FULLNAME": "Moseby Ct", "RTTYP": "M", "MTFCC": "S1500" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.469792, 38.779313 ], [ -77.469063, 38.778912 ], [ -77.468591, 38.778309 ], [ -77.468591, 38.778075 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477332", "FULLNAME": "Moseby Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.468591, 38.778075 ], [ -77.468677, 38.777975 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102855552280", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452497, 38.771718 ], [ -77.452669, 38.771752 ], [ -77.454042, 38.771986 ], [ -77.454729, 38.772086 ], [ -77.455416, 38.772287 ], [ -77.456102, 38.772655 ], [ -77.458892, 38.774194 ], [ -77.459364, 38.774562 ], [ -77.459750, 38.775399 ], [ -77.460394, 38.777005 ], [ -77.460651, 38.778042 ], [ -77.460823, 38.778610 ], [ -77.461209, 38.779179 ], [ -77.461596, 38.779514 ], [ -77.465844, 38.781822 ], [ -77.466230, 38.781922 ], [ -77.466917, 38.782123 ], [ -77.467303, 38.782357 ], [ -77.467647, 38.782792 ], [ -77.467947, 38.783328 ], [ -77.468162, 38.783528 ], [ -77.469234, 38.784030 ], [ -77.469621, 38.784063 ], [ -77.470136, 38.783963 ], [ -77.470479, 38.783729 ], [ -77.471294, 38.782993 ], [ -77.473783, 38.782023 ], [ -77.474985, 38.781621 ], [ -77.475500, 38.781588 ], [ -77.475886, 38.781655 ], [ -77.478118, 38.782391 ], [ -77.478805, 38.782592 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105045621656", "FULLNAME": "Kirby St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.464943, 38.776436 ], [ -77.465286, 38.776402 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105045621658", "FULLNAME": "Kirby St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.464643, 38.776570 ], [ -77.464943, 38.776436 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477273", "FULLNAME": "Luxor St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.462969, 38.785469 ], [ -77.463999, 38.786706 ], [ -77.464085, 38.787074 ], [ -77.464042, 38.787241 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536161", "FULLNAME": "Colburn Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.466531, 38.783595 ], [ -77.465630, 38.784063 ], [ -77.464728, 38.784532 ], [ -77.463827, 38.785000 ], [ -77.462969, 38.785469 ], [ -77.462068, 38.785937 ], [ -77.460737, 38.786639 ], [ -77.459879, 38.787141 ], [ -77.459793, 38.787241 ], [ -77.459750, 38.787509 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477249", "FULLNAME": "Adams St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.461467, 38.782960 ], [ -77.461252, 38.783261 ], [ -77.461252, 38.783394 ], [ -77.461467, 38.783729 ], [ -77.461295, 38.784164 ], [ -77.461166, 38.784465 ], [ -77.461166, 38.784766 ], [ -77.461252, 38.784967 ], [ -77.462068, 38.785937 ], [ -77.462497, 38.786439 ], [ -77.462626, 38.786873 ], [ -77.462583, 38.787141 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477240", "FULLNAME": "Park Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.461252, 38.784967 ], [ -77.460480, 38.785368 ], [ -77.460179, 38.785469 ], [ -77.459192, 38.785602 ], [ -77.458763, 38.785602 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477325", "FULLNAME": "Martin Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.465844, 38.780317 ], [ -77.465372, 38.780317 ], [ -77.465029, 38.780216 ], [ -77.463613, 38.779447 ], [ -77.462282, 38.778744 ], [ -77.462025, 38.778744 ], [ -77.461810, 38.778811 ], [ -77.461209, 38.779179 ], [ -77.460909, 38.779380 ], [ -77.460566, 38.779848 ], [ -77.460480, 38.780517 ], [ -77.460351, 38.782123 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477245", "FULLNAME": "Yost Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.460651, 38.782056 ], [ -77.460823, 38.782290 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477358", "FULLNAME": "Spruce St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.461295, 38.784164 ], [ -77.460780, 38.784063 ], [ -77.460008, 38.784030 ], [ -77.458978, 38.783762 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477341", "FULLNAME": "Runyon Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.459021, 38.783261 ], [ -77.460651, 38.783394 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477490", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.459106, 38.782290 ], [ -77.460394, 38.782558 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477247", "FULLNAME": "Yost St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.461767, 38.780919 ], [ -77.460823, 38.781989 ], [ -77.460651, 38.782056 ], [ -77.460351, 38.782123 ], [ -77.460051, 38.782123 ], [ -77.459149, 38.781889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679538189", "FULLNAME": "Old Centreville Rd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.458549, 38.787409 ], [ -77.458763, 38.785602 ], [ -77.458978, 38.783762 ], [ -77.459021, 38.783261 ], [ -77.459106, 38.782290 ], [ -77.459149, 38.781889 ], [ -77.459536, 38.778410 ], [ -77.459450, 38.778242 ], [ -77.459321, 38.778109 ], [ -77.454772, 38.775566 ], [ -77.453141, 38.774596 ], [ -77.452669, 38.774094 ], [ -77.452540, 38.773592 ], [ -77.452455, 38.773492 ], [ -77.452283, 38.773458 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477517", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.463613, 38.779447 ], [ -77.463870, 38.779112 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477244", "FULLNAME": "Polk Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.459450, 38.778242 ], [ -77.460651, 38.778042 ], [ -77.462540, 38.777808 ], [ -77.462840, 38.777874 ], [ -77.463269, 38.778075 ], [ -77.465115, 38.779112 ], [ -77.465758, 38.779313 ], [ -77.466488, 38.779280 ], [ -77.467346, 38.778912 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477298", "FULLNAME": "Cabbel Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.454772, 38.775566 ], [ -77.455330, 38.774964 ], [ -77.455716, 38.774863 ], [ -77.459536, 38.777005 ], [ -77.460008, 38.777071 ], [ -77.460394, 38.777005 ], [ -77.461638, 38.776837 ], [ -77.462111, 38.776770 ], [ -77.462754, 38.776804 ], [ -77.463698, 38.777138 ], [ -77.463956, 38.777306 ], [ -77.465715, 38.778242 ], [ -77.466917, 38.778544 ], [ -77.467175, 38.778677 ], [ -77.467346, 38.778912 ], [ -77.467775, 38.779447 ], [ -77.468376, 38.779982 ], [ -77.469363, 38.780551 ], [ -77.470737, 38.781186 ], [ -77.471037, 38.781488 ], [ -77.471123, 38.781755 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105045621660", "FULLNAME": "Kirby St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.463269, 38.778075 ], [ -77.463956, 38.777306 ], [ -77.464385, 38.776904 ], [ -77.464643, 38.776570 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105045621608", "FULLNAME": "Kirby St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.464943, 38.776436 ], [ -77.464986, 38.776402 ], [ -77.464900, 38.776202 ], [ -77.463226, 38.775332 ], [ -77.463140, 38.775332 ], [ -77.463784, 38.776034 ], [ -77.464471, 38.776402 ], [ -77.464643, 38.776570 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477375", "FULLNAME": "Forrest St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.459235, 38.773659 ], [ -77.460051, 38.773826 ], [ -77.460351, 38.773960 ], [ -77.460437, 38.774060 ], [ -77.461038, 38.775332 ], [ -77.461638, 38.776837 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477515", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.459192, 38.772622 ], [ -77.459235, 38.772655 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477280", "FULLNAME": "Price Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.458892, 38.774194 ], [ -77.459235, 38.773659 ], [ -77.459278, 38.773023 ], [ -77.459235, 38.772655 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477261", "FULLNAME": "Evans St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.456102, 38.772655 ], [ -77.455888, 38.772889 ], [ -77.455759, 38.773291 ], [ -77.455888, 38.773592 ], [ -77.456102, 38.773860 ], [ -77.456489, 38.774060 ], [ -77.458978, 38.775432 ], [ -77.459364, 38.775466 ], [ -77.459750, 38.775399 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477284", "FULLNAME": "Scott Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.455330, 38.774964 ], [ -77.455158, 38.774830 ], [ -77.454600, 38.774094 ], [ -77.454429, 38.773625 ], [ -77.454429, 38.773358 ], [ -77.454729, 38.772086 ], [ -77.454901, 38.771384 ], [ -77.455115, 38.771250 ], [ -77.455373, 38.771216 ], [ -77.455587, 38.771283 ], [ -77.458591, 38.772923 ], [ -77.458849, 38.773023 ], [ -77.459278, 38.773023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477307", "FULLNAME": "Crozet St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.455716, 38.774863 ], [ -77.456489, 38.774060 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103717088866", "FULLNAME": "Mathis Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.454042, 38.771986 ], [ -77.454300, 38.770781 ], [ -77.454472, 38.770313 ], [ -77.454600, 38.770179 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103717088865", "FULLNAME": "Mathis Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.454600, 38.770179 ], [ -77.455029, 38.769644 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102214409896", "FULLNAME": "Centreville Rd", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452283, 38.773458 ], [ -77.452326, 38.773257 ], [ -77.452540, 38.772421 ], [ -77.452669, 38.771752 ], [ -77.452884, 38.770882 ], [ -77.452970, 38.770614 ], [ -77.453012, 38.770413 ], [ -77.453098, 38.770146 ], [ -77.453227, 38.769878 ], [ -77.453399, 38.769577 ], [ -77.453527, 38.769376 ], [ -77.453742, 38.769108 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102214411210", "FULLNAME": "State Rte 28", "RTTYP": "S", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452283, 38.773458 ], [ -77.452326, 38.773257 ], [ -77.452540, 38.772421 ], [ -77.452669, 38.771752 ], [ -77.452884, 38.770882 ], [ -77.452970, 38.770614 ], [ -77.453012, 38.770413 ], [ -77.453098, 38.770146 ], [ -77.453227, 38.769878 ], [ -77.453399, 38.769577 ], [ -77.453527, 38.769376 ], [ -77.453742, 38.769108 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477217", "FULLNAME": "State Rte 28", "RTTYP": "S", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452111, 38.773425 ], [ -77.452326, 38.772622 ], [ -77.452369, 38.772387 ], [ -77.452455, 38.771886 ], [ -77.452497, 38.771718 ], [ -77.452626, 38.771350 ], [ -77.452755, 38.770714 ], [ -77.452798, 38.770514 ], [ -77.452927, 38.770246 ], [ -77.453012, 38.770012 ], [ -77.453098, 38.769845 ], [ -77.453270, 38.769510 ], [ -77.453399, 38.769376 ], [ -77.453613, 38.769042 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477454", "FULLNAME": "Centreville Rd", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452111, 38.773425 ], [ -77.452326, 38.772622 ], [ -77.452369, 38.772387 ], [ -77.452455, 38.771886 ], [ -77.452497, 38.771718 ], [ -77.452626, 38.771350 ], [ -77.452755, 38.770714 ], [ -77.452798, 38.770514 ], [ -77.452927, 38.770246 ], [ -77.453012, 38.770012 ], [ -77.453098, 38.769845 ], [ -77.453270, 38.769510 ], [ -77.453399, 38.769376 ], [ -77.453613, 38.769042 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106092774118", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452283, 38.773458 ], [ -77.452111, 38.773425 ], [ -77.451854, 38.773425 ], [ -77.451768, 38.773425 ], [ -77.451725, 38.773425 ], [ -77.451639, 38.773425 ], [ -77.451339, 38.773458 ], [ -77.451210, 38.773492 ], [ -77.450867, 38.773659 ], [ -77.450824, 38.773659 ], [ -77.450695, 38.773692 ], [ -77.450566, 38.773692 ], [ -77.450309, 38.773726 ], [ -77.449965, 38.773659 ], [ -77.449923, 38.773659 ], [ -77.449365, 38.773391 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477551", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.450609, 38.772287 ], [ -77.450824, 38.772421 ], [ -77.450953, 38.772321 ], [ -77.450953, 38.772254 ], [ -77.450738, 38.772187 ], [ -77.450609, 38.772287 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477430", "FULLNAME": "Englewood Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449794, 38.771886 ], [ -77.450609, 38.772287 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477440", "FULLNAME": "Sunnyside Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449665, 38.772053 ], [ -77.449493, 38.771952 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106073064085", "FULLNAME": "Blooms Quarry Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452111, 38.773425 ], [ -77.451854, 38.773425 ], [ -77.451768, 38.773425 ], [ -77.451725, 38.773425 ], [ -77.451639, 38.773425 ], [ -77.451339, 38.773458 ], [ -77.451210, 38.773492 ], [ -77.450867, 38.773659 ], [ -77.450824, 38.773659 ], [ -77.450695, 38.773692 ], [ -77.450566, 38.773692 ], [ -77.450309, 38.773726 ], [ -77.449965, 38.773659 ], [ -77.449923, 38.773659 ], [ -77.449365, 38.773391 ], [ -77.448163, 38.772856 ], [ -77.447605, 38.772622 ], [ -77.447348, 38.772387 ], [ -77.447090, 38.772187 ], [ -77.446833, 38.772019 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477554", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449493, 38.771952 ], [ -77.449150, 38.771752 ], [ -77.449064, 38.771752 ], [ -77.448978, 38.771852 ], [ -77.449322, 38.772086 ], [ -77.449493, 38.771952 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477452", "FULLNAME": "White Pine Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447391, 38.771451 ], [ -77.447004, 38.771250 ], [ -77.446876, 38.771350 ], [ -77.447219, 38.771618 ], [ -77.447734, 38.772019 ], [ -77.448421, 38.772421 ], [ -77.449064, 38.772689 ], [ -77.450180, 38.773190 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106087402596", "FULLNAME": "Blooms Quarry Rd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449365, 38.773391 ], [ -77.448163, 38.772856 ], [ -77.447605, 38.772622 ], [ -77.447348, 38.772387 ], [ -77.447090, 38.772187 ], [ -77.446833, 38.772019 ], [ -77.445073, 38.770614 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477275", "FULLNAME": "Owens Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442455, 38.772454 ], [ -77.443185, 38.772956 ], [ -77.443314, 38.773124 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105045631567", "FULLNAME": "Euclid Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444601, 38.770815 ], [ -77.444000, 38.771317 ], [ -77.442498, 38.772387 ], [ -77.442455, 38.772454 ], [ -77.441554, 38.773324 ], [ -77.440782, 38.774462 ], [ -77.440352, 38.775332 ], [ -77.440181, 38.775867 ], [ -77.440052, 38.775967 ], [ -77.440009, 38.775800 ], [ -77.440138, 38.775432 ], [ -77.440696, 38.774261 ], [ -77.441082, 38.773659 ], [ -77.441425, 38.773257 ], [ -77.441854, 38.772755 ], [ -77.442369, 38.772287 ], [ -77.444086, 38.771083 ], [ -77.444730, 38.770413 ], [ -77.445416, 38.769711 ], [ -77.445545, 38.769577 ], [ -77.447090, 38.767904 ], [ -77.447305, 38.767670 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477525", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438722, 38.780551 ], [ -77.437778, 38.779681 ], [ -77.437563, 38.779614 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105533752589", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440052, 38.775967 ], [ -77.440739, 38.776101 ], [ -77.442584, 38.776202 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477313", "FULLNAME": "Euclid Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440052, 38.775967 ], [ -77.440095, 38.776202 ], [ -77.440009, 38.776469 ], [ -77.439795, 38.778109 ], [ -77.439880, 38.779413 ], [ -77.439795, 38.779681 ], [ -77.439623, 38.779882 ], [ -77.438722, 38.780551 ], [ -77.438593, 38.780651 ], [ -77.438421, 38.780651 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477362", "FULLNAME": "Vassau Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437177, 38.777071 ], [ -77.437692, 38.777306 ], [ -77.438679, 38.778176 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477409", "FULLNAME": "Industry Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440052, 38.775967 ], [ -77.438850, 38.775800 ], [ -77.438293, 38.775900 ], [ -77.438035, 38.776034 ], [ -77.437778, 38.776235 ], [ -77.437177, 38.777071 ], [ -77.436662, 38.777707 ], [ -77.436361, 38.777975 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477558", "MTFCC": "S1740" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.441554, 38.773324 ], [ -77.441425, 38.773257 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477449", "FULLNAME": "Enterprise Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438035, 38.776034 ], [ -77.437606, 38.775599 ], [ -77.436662, 38.774930 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477277", "FULLNAME": "Owens Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442498, 38.772387 ], [ -77.442369, 38.772287 ], [ -77.440953, 38.771317 ], [ -77.440739, 38.771216 ], [ -77.440310, 38.771149 ], [ -77.439752, 38.771216 ], [ -77.439451, 38.771317 ], [ -77.439065, 38.771584 ], [ -77.438807, 38.771919 ], [ -77.438550, 38.772086 ], [ -77.437735, 38.772354 ], [ -77.437005, 38.772421 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477377", "FULLNAME": "Hardees Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.454300, 38.770781 ], [ -77.452970, 38.770614 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477224", "FULLNAME": "Anna Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.451553, 38.768406 ], [ -77.450995, 38.768071 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081513527", "FULLNAME": "Conner Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448549, 38.766164 ], [ -77.448592, 38.766197 ], [ -77.449150, 38.766565 ], [ -77.449837, 38.766967 ], [ -77.450867, 38.767536 ], [ -77.451811, 38.768071 ], [ -77.453613, 38.769042 ], [ -77.453742, 38.769108 ], [ -77.454042, 38.769276 ], [ -77.455029, 38.769644 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477435", "FULLNAME": "Sandstone Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449064, 38.772689 ], [ -77.449665, 38.772053 ], [ -77.449794, 38.771886 ], [ -77.449880, 38.771451 ], [ -77.449923, 38.771283 ], [ -77.449965, 38.770882 ], [ -77.450008, 38.770648 ], [ -77.450480, 38.770079 ], [ -77.450695, 38.769677 ], [ -77.450695, 38.769309 ], [ -77.451038, 38.768941 ], [ -77.451553, 38.768406 ], [ -77.451811, 38.768071 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477400", "FULLNAME": "Woodhue Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449408, 38.770815 ], [ -77.449965, 38.770882 ], [ -77.450781, 38.770949 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477446", "FULLNAME": "Cartwright Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449708, 38.769644 ], [ -77.450480, 38.770079 ], [ -77.450867, 38.770280 ], [ -77.451081, 38.770280 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477403", "FULLNAME": "Woodhue Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448034, 38.770346 ], [ -77.448592, 38.770614 ], [ -77.449150, 38.770748 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477552", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448936, 38.769309 ], [ -77.449150, 38.769443 ], [ -77.449279, 38.769309 ], [ -77.448936, 38.769142 ], [ -77.448850, 38.769209 ], [ -77.448936, 38.769309 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477425", "FULLNAME": "Reinecke Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.451038, 38.768941 ], [ -77.450480, 38.768640 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477376", "FULLNAME": "General Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.450867, 38.767536 ], [ -77.450609, 38.767837 ], [ -77.450223, 38.768272 ], [ -77.450008, 38.768406 ], [ -77.449837, 38.768238 ], [ -77.449665, 38.768439 ], [ -77.449279, 38.768841 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477495", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449665, 38.768439 ], [ -77.450008, 38.768406 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477290", "FULLNAME": "Union Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449837, 38.768238 ], [ -77.449450, 38.768071 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477289", "FULLNAME": "Swann Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.450609, 38.767837 ], [ -77.449965, 38.767502 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477408", "FULLNAME": "Hamilton Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449536, 38.767335 ], [ -77.449837, 38.766967 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477321", "FULLNAME": "Madera Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448249, 38.768640 ], [ -77.448421, 38.768540 ], [ -77.449236, 38.767636 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477436", "FULLNAME": "Saint Steven Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449880, 38.767502 ], [ -77.449536, 38.767335 ], [ -77.448850, 38.766933 ], [ -77.448506, 38.766766 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477256", "FULLNAME": "Brian Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448850, 38.766933 ], [ -77.449150, 38.766565 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477420", "FULLNAME": "Overhill Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447219, 38.771618 ], [ -77.447391, 38.771451 ], [ -77.447691, 38.770982 ], [ -77.447777, 38.770815 ], [ -77.447991, 38.770447 ], [ -77.448034, 38.770346 ], [ -77.448206, 38.770079 ], [ -77.448936, 38.769309 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477418", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.443743, 38.768673 ], [ -77.445416, 38.769711 ], [ -77.445545, 38.769811 ], [ -77.446790, 38.770614 ], [ -77.447691, 38.770982 ], [ -77.448807, 38.771283 ], [ -77.449880, 38.771451 ], [ -77.452283, 38.771752 ], [ -77.452497, 38.771718 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477419", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452497, 38.771718 ], [ -77.452369, 38.771584 ], [ -77.449923, 38.771283 ], [ -77.448764, 38.771083 ], [ -77.447777, 38.770815 ], [ -77.447047, 38.770547 ], [ -77.445674, 38.769644 ], [ -77.445545, 38.769577 ], [ -77.444644, 38.769042 ], [ -77.443743, 38.768673 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477528", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448206, 38.770079 ], [ -77.448120, 38.770045 ], [ -77.447777, 38.770380 ], [ -77.447820, 38.770447 ], [ -77.447991, 38.770447 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477519", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447433, 38.770146 ], [ -77.447176, 38.769945 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477405", "FULLNAME": "Burnside Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.446918, 38.768975 ], [ -77.447906, 38.769543 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477359", "FULLNAME": "Sumter Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447176, 38.769945 ], [ -77.446146, 38.769376 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477271", "FULLNAME": "Lapaz Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447219, 38.767971 ], [ -77.447691, 38.768238 ], [ -77.448034, 38.768439 ], [ -77.448249, 38.768640 ], [ -77.448292, 38.769008 ], [ -77.447906, 38.769543 ], [ -77.447519, 38.769878 ], [ -77.447176, 38.769945 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477541", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447090, 38.768774 ], [ -77.446918, 38.768975 ], [ -77.446704, 38.769175 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477231", "FULLNAME": "Inyo Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447691, 38.768238 ], [ -77.448549, 38.767268 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477526", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447090, 38.767904 ], [ -77.447219, 38.767971 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081513518", "FULLNAME": "Euclid Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444901, 38.770514 ], [ -77.445545, 38.769811 ], [ -77.445674, 38.769644 ], [ -77.447219, 38.767971 ], [ -77.448292, 38.766666 ], [ -77.448592, 38.766197 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477460", "FULLNAME": "Blooms Quarry Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.445073, 38.770614 ], [ -77.444901, 38.770514 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105045631564", "FULLNAME": "Euclid Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444901, 38.770514 ], [ -77.444601, 38.770815 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477531", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444901, 38.770514 ], [ -77.444730, 38.770413 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103677851594", "FULLNAME": "Monroe Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.443829, 38.766867 ], [ -77.444258, 38.767636 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103677851555", "FULLNAME": "Bank St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444258, 38.767636 ], [ -77.443142, 38.768238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1101168884340", "FULLNAME": "Euclid Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447305, 38.767670 ], [ -77.448120, 38.766766 ], [ -77.448549, 38.766164 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103677851647", "FULLNAME": "Franklin Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.443743, 38.766833 ], [ -77.443829, 38.766867 ], [ -77.444386, 38.766197 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679123999", "FULLNAME": "Conner Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.445674, 38.765394 ], [ -77.444987, 38.765093 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110461107385", "FULLNAME": "Conner Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444987, 38.765093 ], [ -77.444258, 38.764758 ], [ -77.444000, 38.764758 ], [ -77.443700, 38.765060 ], [ -77.443528, 38.765361 ], [ -77.443528, 38.765628 ], [ -77.443614, 38.765863 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103677851474", "FULLNAME": "Liberty St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442369, 38.765762 ], [ -77.443614, 38.765863 ], [ -77.444086, 38.765963 ], [ -77.444386, 38.766197 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678306484", "FULLNAME": "Market St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442412, 38.766733 ], [ -77.443013, 38.766699 ], [ -77.443743, 38.766833 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477489", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440953, 38.771317 ], [ -77.441125, 38.770614 ], [ -77.441039, 38.769376 ], [ -77.440610, 38.768740 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477540", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442799, 38.767870 ], [ -77.441812, 38.768305 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477539", "FULLNAME": "Park Center Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442412, 38.766733 ], [ -77.441983, 38.766733 ], [ -77.441211, 38.766833 ], [ -77.440653, 38.767067 ], [ -77.439322, 38.767904 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477398", "FULLNAME": "Venture Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439451, 38.771317 ], [ -77.439108, 38.770815 ], [ -77.438593, 38.770246 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103947052954", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440438, 38.760040 ], [ -77.441168, 38.760442 ], [ -77.441640, 38.760810 ], [ -77.442026, 38.761245 ], [ -77.442241, 38.761747 ], [ -77.442284, 38.762617 ], [ -77.442369, 38.765762 ], [ -77.442412, 38.766733 ], [ -77.442455, 38.767168 ], [ -77.442799, 38.767870 ], [ -77.443142, 38.768238 ], [ -77.443743, 38.768673 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477423", "FULLNAME": "Railroad Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442284, 38.762617 ], [ -77.441983, 38.762650 ], [ -77.441683, 38.762784 ], [ -77.440696, 38.763721 ], [ -77.440567, 38.764022 ], [ -77.440567, 38.764089 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477484", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440567, 38.764089 ], [ -77.440782, 38.764825 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105533753031", "FULLNAME": "Sunset Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439322, 38.763788 ], [ -77.439451, 38.763955 ], [ -77.439752, 38.764022 ], [ -77.439923, 38.763955 ], [ -77.440181, 38.763788 ], [ -77.440524, 38.763420 ], [ -77.440739, 38.763320 ], [ -77.440867, 38.763085 ], [ -77.440782, 38.762952 ], [ -77.440181, 38.762684 ], [ -77.440052, 38.762684 ], [ -77.439966, 38.762684 ], [ -77.439795, 38.762751 ], [ -77.439280, 38.763353 ], [ -77.439237, 38.763487 ], [ -77.439322, 38.763788 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536111", "FULLNAME": "Russia Branch View Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439194, 38.764390 ], [ -77.439108, 38.764825 ], [ -77.438464, 38.765327 ], [ -77.437863, 38.765930 ], [ -77.437778, 38.765930 ], [ -77.437692, 38.765896 ], [ -77.437692, 38.765829 ], [ -77.437220, 38.765327 ], [ -77.436919, 38.765294 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678293384", "FULLNAME": "Creek View Ter", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438464, 38.765327 ], [ -77.437649, 38.764892 ], [ -77.437434, 38.764692 ], [ -77.437091, 38.764558 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678292796", "FULLNAME": "Russia Branch View Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440567, 38.764022 ], [ -77.440138, 38.764056 ], [ -77.439537, 38.764357 ], [ -77.439194, 38.764390 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536091", "FULLNAME": "Russia Branch View Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439451, 38.763955 ], [ -77.439408, 38.764123 ], [ -77.439194, 38.764390 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678290915", "FULLNAME": "Trailway Ter", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439237, 38.763487 ], [ -77.439065, 38.763554 ], [ -77.439194, 38.763989 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679537852", "FULLNAME": "Elm Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438893, 38.762115 ], [ -77.438679, 38.762316 ], [ -77.438378, 38.762751 ], [ -77.438378, 38.762952 ], [ -77.438893, 38.763219 ], [ -77.439022, 38.763253 ], [ -77.439237, 38.763052 ], [ -77.439623, 38.762450 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678293757", "FULLNAME": "Locust Ter", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437649, 38.764892 ], [ -77.437692, 38.764758 ], [ -77.437863, 38.764692 ], [ -77.437906, 38.764156 ], [ -77.437820, 38.763621 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679538402", "FULLNAME": "Digital Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440138, 38.759906 ], [ -77.438979, 38.761245 ], [ -77.438679, 38.761948 ], [ -77.437563, 38.763621 ], [ -77.437348, 38.764156 ], [ -77.437091, 38.764558 ], [ -77.436533, 38.765361 ], [ -77.436104, 38.765863 ], [ -77.435589, 38.766063 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081861038", "FULLNAME": "Belo Gate Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437563, 38.763621 ], [ -77.437091, 38.763487 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678303567", "FULLNAME": "Corbett Cir", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435803, 38.767803 ], [ -77.435889, 38.768138 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536540", "FULLNAME": "Corbett Cir", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435803, 38.767803 ], [ -77.436104, 38.767737 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105533753133", "FULLNAME": "Corbett Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434387, 38.768640 ], [ -77.435246, 38.768406 ], [ -77.435846, 38.768272 ], [ -77.435889, 38.768138 ], [ -77.436104, 38.767737 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536539", "FULLNAME": "Corbett Cir", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435031, 38.768004 ], [ -77.435803, 38.767803 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536474", "FULLNAME": "Handerson Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435932, 38.766498 ], [ -77.435975, 38.766699 ], [ -77.435632, 38.767201 ], [ -77.435589, 38.767402 ], [ -77.435503, 38.767502 ], [ -77.435331, 38.767536 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678302854", "FULLNAME": "Handerson Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435932, 38.766498 ], [ -77.435803, 38.766565 ], [ -77.435589, 38.766933 ], [ -77.435331, 38.767536 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679538404", "FULLNAME": "Digital Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434816, 38.767368 ], [ -77.434773, 38.767569 ], [ -77.435031, 38.768004 ], [ -77.435246, 38.768406 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536473", "FULLNAME": "Handerson Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435331, 38.767536 ], [ -77.434816, 38.767368 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678610025", "FULLNAME": "Wigfall Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434902, 38.767034 ], [ -77.434559, 38.766900 ], [ -77.434258, 38.767469 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678302955", "FULLNAME": "Pickens Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434773, 38.767569 ], [ -77.434516, 38.767636 ], [ -77.434173, 38.767569 ], [ -77.434044, 38.767636 ], [ -77.433443, 38.768774 ], [ -77.433443, 38.768874 ], [ -77.433872, 38.768740 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678302491", "FULLNAME": "Holmes Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436104, 38.767737 ], [ -77.436147, 38.767368 ], [ -77.436404, 38.766933 ], [ -77.436404, 38.766800 ], [ -77.436833, 38.766398 ], [ -77.437305, 38.765930 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679094720", "FULLNAME": "Battalion Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436275, 38.766097 ], [ -77.436490, 38.766264 ], [ -77.436705, 38.766298 ], [ -77.436833, 38.766398 ], [ -77.437091, 38.766599 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678302380", "FULLNAME": "Elzey Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436275, 38.766097 ], [ -77.436361, 38.765896 ], [ -77.437005, 38.765762 ], [ -77.437091, 38.765863 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536475", "FULLNAME": "Handerson Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435846, 38.766264 ], [ -77.435975, 38.766432 ], [ -77.435932, 38.766498 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678302281", "FULLNAME": "Walker Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436275, 38.766097 ], [ -77.436018, 38.766130 ], [ -77.435846, 38.766264 ], [ -77.435675, 38.766197 ], [ -77.435589, 38.766063 ], [ -77.435417, 38.765863 ], [ -77.435460, 38.765729 ], [ -77.435846, 38.765562 ], [ -77.436061, 38.765327 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679090051", "FULLNAME": "Park Station Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435589, 38.766063 ], [ -77.435203, 38.766498 ], [ -77.434902, 38.767034 ], [ -77.434816, 38.767368 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678610426", "FULLNAME": "Wheats Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435203, 38.766498 ], [ -77.434859, 38.766365 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081861019", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436662, 38.764390 ], [ -77.435846, 38.764123 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081863072", "FULLNAME": "Belo Gate Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437091, 38.763487 ], [ -77.436962, 38.763688 ], [ -77.436662, 38.764390 ], [ -77.436361, 38.764758 ], [ -77.435760, 38.764524 ], [ -77.435417, 38.764825 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081861013", "FULLNAME": "Maria Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436962, 38.763688 ], [ -77.436190, 38.763453 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081863073", "FULLNAME": "Belo Gate Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437091, 38.763487 ], [ -77.437220, 38.763186 ], [ -77.437520, 38.762818 ], [ -77.437563, 38.762684 ], [ -77.437520, 38.762617 ], [ -77.436748, 38.762383 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081861017", "FULLNAME": "Sandra Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437220, 38.763186 ], [ -77.436447, 38.762918 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477513", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435718, 38.763119 ], [ -77.435632, 38.763219 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477270", "FULLNAME": "Lanae Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433958, 38.762550 ], [ -77.434216, 38.763387 ], [ -77.434387, 38.763654 ], [ -77.435031, 38.764123 ], [ -77.435203, 38.764123 ], [ -77.435374, 38.763922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477427", "FULLNAME": "Wilcoxen Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435718, 38.763119 ], [ -77.435374, 38.763018 ], [ -77.434816, 38.762751 ], [ -77.434173, 38.762550 ], [ -77.433958, 38.762550 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477392", "FULLNAME": "Rosebud Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434301, 38.766331 ], [ -77.434258, 38.765896 ], [ -77.434344, 38.765628 ], [ -77.434344, 38.765227 ], [ -77.434258, 38.764959 ], [ -77.434001, 38.764625 ], [ -77.433658, 38.764491 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477422", "FULLNAME": "Primrose Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434087, 38.763989 ], [ -77.433829, 38.764223 ], [ -77.433658, 38.764491 ], [ -77.433357, 38.764524 ], [ -77.433228, 38.764625 ], [ -77.433143, 38.764792 ], [ -77.433143, 38.765060 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536124", "FULLNAME": "W Carondelet Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436919, 38.765595 ], [ -77.436533, 38.765361 ], [ -77.435417, 38.764825 ], [ -77.434258, 38.764156 ], [ -77.434087, 38.763989 ], [ -77.433743, 38.763520 ], [ -77.433400, 38.762617 ], [ -77.433228, 38.762249 ], [ -77.432842, 38.761847 ], [ -77.432499, 38.761613 ], [ -77.432241, 38.761513 ], [ -77.431083, 38.761044 ], [ -77.430911, 38.761011 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678606081", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432842, 38.762684 ], [ -77.432885, 38.762885 ], [ -77.433014, 38.763152 ], [ -77.433014, 38.763186 ], [ -77.433014, 38.763253 ], [ -77.432885, 38.763453 ], [ -77.432628, 38.763855 ], [ -77.432585, 38.763888 ], [ -77.432542, 38.763922 ], [ -77.432327, 38.763989 ], [ -77.432241, 38.763989 ], [ -77.432199, 38.763989 ], [ -77.431898, 38.763855 ], [ -77.431855, 38.763822 ], [ -77.431855, 38.763788 ], [ -77.431855, 38.763755 ], [ -77.431984, 38.763387 ], [ -77.432241, 38.762985 ], [ -77.432284, 38.762952 ], [ -77.432456, 38.762784 ], [ -77.432542, 38.762751 ], [ -77.432628, 38.762717 ], [ -77.432714, 38.762684 ], [ -77.432842, 38.762684 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679538423", "FULLNAME": "Black Hawk Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432842, 38.762684 ], [ -77.432885, 38.762885 ], [ -77.433014, 38.763152 ], [ -77.433014, 38.763186 ], [ -77.433014, 38.763253 ], [ -77.432885, 38.763453 ], [ -77.432628, 38.763855 ], [ -77.432585, 38.763888 ], [ -77.432542, 38.763922 ], [ -77.432327, 38.763989 ], [ -77.432241, 38.763989 ], [ -77.432199, 38.763989 ], [ -77.431898, 38.763855 ], [ -77.431855, 38.763822 ], [ -77.431855, 38.763788 ], [ -77.431855, 38.763755 ], [ -77.431984, 38.763387 ], [ -77.432241, 38.762985 ], [ -77.432284, 38.762952 ], [ -77.432456, 38.762784 ], [ -77.432542, 38.762751 ], [ -77.432628, 38.762717 ], [ -77.432714, 38.762684 ], [ -77.432842, 38.762684 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106092771930", "FULLNAME": "Elm Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440052, 38.762684 ], [ -77.439966, 38.762684 ], [ -77.439923, 38.762516 ], [ -77.439795, 38.762450 ], [ -77.439623, 38.762450 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679537849", "FULLNAME": "Elm Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438893, 38.762115 ], [ -77.439065, 38.762148 ], [ -77.439623, 38.762450 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679537853", "FULLNAME": "Elm Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438679, 38.761948 ], [ -77.438850, 38.762015 ], [ -77.438893, 38.762115 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103947052953", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440438, 38.760040 ], [ -77.440138, 38.759906 ], [ -77.438765, 38.759103 ], [ -77.438207, 38.758802 ], [ -77.438078, 38.758668 ], [ -77.437005, 38.758099 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081861195", "FULLNAME": "Isabel Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437692, 38.759471 ], [ -77.437263, 38.760207 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081861150", "FULLNAME": "Christopher Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438765, 38.759103 ], [ -77.438421, 38.759505 ], [ -77.438207, 38.759639 ], [ -77.437992, 38.759639 ], [ -77.437692, 38.759471 ], [ -77.437134, 38.759204 ], [ -77.436576, 38.759237 ], [ -77.436318, 38.759270 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081861178", "FULLNAME": "Phita Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436576, 38.759237 ], [ -77.436447, 38.758769 ], [ -77.436533, 38.758601 ], [ -77.436705, 38.758568 ], [ -77.438207, 38.759371 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477317", "FULLNAME": "Kristy Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435718, 38.763119 ], [ -77.436233, 38.761981 ], [ -77.436876, 38.760977 ], [ -77.437177, 38.760341 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477294", "FULLNAME": "Andrew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435803, 38.760609 ], [ -77.435632, 38.761245 ], [ -77.435975, 38.760944 ], [ -77.436104, 38.760709 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477356", "FULLNAME": "Scotty Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436876, 38.760977 ], [ -77.436104, 38.760709 ], [ -77.435975, 38.760676 ], [ -77.435803, 38.760609 ], [ -77.435117, 38.760375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477433", "FULLNAME": "Robin Lee Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434988, 38.762416 ], [ -77.435331, 38.761780 ], [ -77.435503, 38.761479 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477388", "FULLNAME": "Lindsey Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434473, 38.761513 ], [ -77.435331, 38.761780 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477383", "FULLNAME": "Jessica Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433958, 38.762550 ], [ -77.434473, 38.761513 ], [ -77.435117, 38.760375 ], [ -77.435460, 38.759739 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081861175", "FULLNAME": "Alexander Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436576, 38.760040 ], [ -77.436576, 38.759237 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477496", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436190, 38.760609 ], [ -77.436361, 38.760308 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477492", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436361, 38.760308 ], [ -77.436490, 38.760074 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477507", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436361, 38.760308 ], [ -77.436233, 38.760241 ], [ -77.436061, 38.760174 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477493", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435889, 38.760509 ], [ -77.436061, 38.760174 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477491", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436061, 38.760174 ], [ -77.436147, 38.759973 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477296", "FULLNAME": "Andrew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436233, 38.759036 ], [ -77.436318, 38.759270 ], [ -77.436361, 38.759839 ], [ -77.436233, 38.760241 ], [ -77.435975, 38.760676 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477501", "MTFCC": "S1780" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436061, 38.759304 ], [ -77.436147, 38.759772 ], [ -77.436361, 38.759839 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477502", "MTFCC": "S1780" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436061, 38.759304 ], [ -77.436318, 38.759270 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477295", "FULLNAME": "Andrew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436190, 38.757898 ], [ -77.436147, 38.758032 ], [ -77.436104, 38.758702 ], [ -77.436233, 38.759036 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477505", "MTFCC": "S1780" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435288, 38.758032 ], [ -77.435331, 38.758233 ], [ -77.435718, 38.758233 ], [ -77.435803, 38.758300 ], [ -77.435846, 38.758635 ], [ -77.435975, 38.758769 ], [ -77.436061, 38.759304 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477382", "FULLNAME": "Jessica Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433400, 38.762617 ], [ -77.433615, 38.762550 ], [ -77.433958, 38.762550 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678606039", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433400, 38.762617 ], [ -77.433100, 38.762684 ], [ -77.432971, 38.762684 ], [ -77.432842, 38.762684 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679538422", "FULLNAME": "Black Hawk Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433400, 38.762617 ], [ -77.433100, 38.762684 ], [ -77.432971, 38.762684 ], [ -77.432842, 38.762684 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105533752563", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438207, 38.758802 ], [ -77.437949, 38.758735 ], [ -77.437048, 38.758267 ], [ -77.436318, 38.758032 ], [ -77.436147, 38.758032 ], [ -77.435288, 38.758032 ], [ -77.434301, 38.758200 ], [ -77.433658, 38.758434 ], [ -77.432714, 38.758969 ], [ -77.432027, 38.759605 ], [ -77.431083, 38.761044 ], [ -77.430482, 38.761981 ], [ -77.429581, 38.762952 ], [ -77.428679, 38.764089 ], [ -77.427907, 38.765060 ], [ -77.427778, 38.765394 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110461107160", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437005, 38.758099 ], [ -77.436318, 38.757932 ], [ -77.436190, 38.757898 ], [ -77.435417, 38.757898 ], [ -77.434859, 38.757965 ], [ -77.433572, 38.758333 ], [ -77.432842, 38.758702 ], [ -77.432027, 38.759371 ], [ -77.431726, 38.759739 ], [ -77.430911, 38.761011 ], [ -77.430396, 38.761881 ], [ -77.429452, 38.762918 ], [ -77.428551, 38.764056 ], [ -77.427950, 38.764859 ], [ -77.427778, 38.765394 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536131", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.431812, 38.762148 ], [ -77.432156, 38.762316 ], [ -77.432284, 38.762282 ], [ -77.432370, 38.762182 ], [ -77.432370, 38.762081 ], [ -77.432156, 38.761948 ], [ -77.431984, 38.761914 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678606144", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432241, 38.761513 ], [ -77.431984, 38.761914 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536132", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.431984, 38.761914 ], [ -77.431641, 38.761847 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103677851221", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.431812, 38.761546 ], [ -77.431641, 38.761847 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477512", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432842, 38.761847 ], [ -77.433143, 38.761580 ], [ -77.433271, 38.761345 ], [ -77.433228, 38.761278 ], [ -77.432971, 38.761144 ], [ -77.432542, 38.761044 ], [ -77.432241, 38.761513 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477536", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433658, 38.758434 ], [ -77.433572, 38.758333 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477297", "FULLNAME": "Andrew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436361, 38.757698 ], [ -77.436318, 38.757798 ], [ -77.436318, 38.757932 ], [ -77.436318, 38.758032 ], [ -77.436233, 38.758400 ], [ -77.436233, 38.759036 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477538", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436233, 38.757664 ], [ -77.436233, 38.757698 ], [ -77.436190, 38.757898 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477404", "FULLNAME": "Zachary Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433572, 38.758333 ], [ -77.433314, 38.757999 ], [ -77.432456, 38.757463 ], [ -77.431984, 38.757196 ], [ -77.431812, 38.756928 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477254", "FULLNAME": "Becky Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432456, 38.757463 ], [ -77.432113, 38.757831 ], [ -77.431941, 38.758166 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477258", "FULLNAME": "Eagle Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428851, 38.769978 ], [ -77.428765, 38.770447 ], [ -77.428894, 38.770648 ], [ -77.429109, 38.770815 ], [ -77.429795, 38.770915 ], [ -77.430868, 38.770915 ], [ -77.431383, 38.771049 ], [ -77.431598, 38.771049 ], [ -77.431812, 38.770882 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477374", "FULLNAME": "Fairway Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427607, 38.769108 ], [ -77.427649, 38.769242 ], [ -77.427735, 38.769376 ], [ -77.427864, 38.769476 ], [ -77.427950, 38.769610 ], [ -77.428079, 38.769711 ], [ -77.428207, 38.769778 ], [ -77.428336, 38.769845 ], [ -77.428465, 38.769911 ], [ -77.428594, 38.769945 ], [ -77.428722, 38.769978 ], [ -77.428851, 38.769978 ], [ -77.428980, 38.770012 ], [ -77.430611, 38.769911 ], [ -77.431383, 38.769744 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477516", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.431555, 38.768506 ], [ -77.431726, 38.767803 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477227", "FULLNAME": "Gary Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429967, 38.767670 ], [ -77.430696, 38.767134 ], [ -77.431211, 38.766766 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477550", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428937, 38.768406 ], [ -77.428980, 38.768238 ], [ -77.429066, 38.768205 ], [ -77.429194, 38.768305 ], [ -77.429109, 38.768406 ], [ -77.428937, 38.768406 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477252", "FULLNAME": "Arnie Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432241, 38.768607 ], [ -77.431555, 38.768506 ], [ -77.430825, 38.768339 ], [ -77.430439, 38.768138 ], [ -77.429967, 38.767670 ], [ -77.429752, 38.767502 ], [ -77.429323, 38.767368 ], [ -77.428508, 38.767335 ], [ -77.427692, 38.767335 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477518", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427607, 38.769108 ], [ -77.426963, 38.769209 ], [ -77.426405, 38.769711 ], [ -77.426190, 38.769811 ], [ -77.426147, 38.769945 ], [ -77.425933, 38.770045 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477229", "FULLNAME": "Golf Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427521, 38.768707 ], [ -77.428465, 38.768673 ], [ -77.428937, 38.768406 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106087387886", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427778, 38.765394 ], [ -77.427692, 38.765796 ], [ -77.427692, 38.767335 ], [ -77.427521, 38.768707 ], [ -77.427607, 38.769108 ], [ -77.427649, 38.769242 ], [ -77.427735, 38.769376 ], [ -77.427864, 38.769476 ], [ -77.427950, 38.769610 ], [ -77.428079, 38.769711 ], [ -77.428207, 38.769778 ], [ -77.428336, 38.769845 ], [ -77.428465, 38.769911 ], [ -77.428594, 38.769945 ], [ -77.428722, 38.769978 ], [ -77.428851, 38.769978 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477260", "FULLNAME": "Elise Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426877, 38.767268 ], [ -77.426877, 38.767569 ], [ -77.427006, 38.767770 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477315", "FULLNAME": "Joshua Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425890, 38.767435 ], [ -77.426147, 38.768205 ], [ -77.426362, 38.768506 ], [ -77.426491, 38.768573 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477232", "FULLNAME": "Jack Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430696, 38.767134 ], [ -77.430353, 38.766867 ], [ -77.429838, 38.766666 ], [ -77.428637, 38.766565 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477451", "FULLNAME": "Greenshire Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428551, 38.764056 ], [ -77.428679, 38.764089 ], [ -77.429066, 38.764290 ], [ -77.429366, 38.764524 ], [ -77.429667, 38.764725 ], [ -77.429967, 38.764825 ], [ -77.430310, 38.764892 ], [ -77.430482, 38.764859 ], [ -77.430997, 38.764993 ], [ -77.431126, 38.765160 ], [ -77.431083, 38.765461 ], [ -77.430782, 38.765628 ], [ -77.430482, 38.765662 ], [ -77.429409, 38.765662 ], [ -77.429109, 38.765662 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536130", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430997, 38.763253 ], [ -77.430696, 38.763085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103677851287", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430696, 38.763085 ], [ -77.430439, 38.762985 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477431", "FULLNAME": "Hedgeford St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429409, 38.765662 ], [ -77.429409, 38.765495 ], [ -77.429109, 38.765160 ], [ -77.429066, 38.765026 ], [ -77.429066, 38.764892 ], [ -77.429366, 38.764524 ], [ -77.429752, 38.763989 ], [ -77.429881, 38.763922 ], [ -77.430182, 38.763922 ], [ -77.430353, 38.763989 ], [ -77.430482, 38.764123 ], [ -77.430482, 38.764859 ], [ -77.430482, 38.765662 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477279", "FULLNAME": "Payne Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428508, 38.767335 ], [ -77.428637, 38.766565 ], [ -77.428594, 38.766231 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477278", "FULLNAME": "Paige Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426062, 38.765595 ], [ -77.426362, 38.765930 ], [ -77.426620, 38.766030 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477399", "FULLNAME": "William St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428551, 38.764056 ], [ -77.427950, 38.763755 ], [ -77.427478, 38.763520 ], [ -77.427220, 38.763453 ], [ -77.426748, 38.763453 ], [ -77.426405, 38.763520 ], [ -77.425890, 38.763721 ], [ -77.425332, 38.764156 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477371", "FULLNAME": "Deborah Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426019, 38.764692 ], [ -77.426534, 38.764424 ], [ -77.426834, 38.764357 ], [ -77.427263, 38.764390 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477365", "FULLNAME": "Bradley Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426748, 38.763453 ], [ -77.426705, 38.763253 ], [ -77.426448, 38.762985 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103691411843", "MTFCC": "S1640" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425933, 38.770045 ], [ -77.425761, 38.770146 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477263", "FULLNAME": "Jenna Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.424860, 38.768607 ], [ -77.425203, 38.768707 ], [ -77.425418, 38.768673 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477250", "FULLNAME": "Alexa Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425890, 38.767435 ], [ -77.425718, 38.766933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477369", "FULLNAME": "Cynthia St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427692, 38.767335 ], [ -77.426877, 38.767268 ], [ -77.425890, 38.767435 ], [ -77.425547, 38.767502 ], [ -77.425075, 38.767502 ], [ -77.424345, 38.767368 ], [ -77.424130, 38.767302 ], [ -77.423143, 38.766733 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477385", "FULLNAME": "Katelyn Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425332, 38.769510 ], [ -77.424474, 38.769175 ], [ -77.424302, 38.769108 ], [ -77.424002, 38.768841 ], [ -77.423787, 38.768372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477393", "FULLNAME": "Shannon St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425075, 38.767502 ], [ -77.424989, 38.768272 ], [ -77.424860, 38.768607 ], [ -77.424774, 38.768807 ], [ -77.424474, 38.769175 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477265", "FULLNAME": "Karen Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.424345, 38.767368 ], [ -77.424560, 38.766699 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477318", "FULLNAME": "Laurie Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426534, 38.765093 ], [ -77.426062, 38.765595 ], [ -77.425375, 38.765829 ], [ -77.424903, 38.765796 ], [ -77.423573, 38.765461 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477285", "FULLNAME": "Sonia Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425375, 38.765829 ], [ -77.425332, 38.765461 ], [ -77.425203, 38.765193 ], [ -77.424688, 38.764825 ], [ -77.424388, 38.764658 ], [ -77.424045, 38.764558 ], [ -77.423401, 38.764558 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477438", "FULLNAME": "Stephanie St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427778, 38.765394 ], [ -77.426963, 38.765260 ], [ -77.426534, 38.765093 ], [ -77.426019, 38.764692 ], [ -77.425332, 38.764156 ], [ -77.424774, 38.763888 ], [ -77.423916, 38.763721 ], [ -77.423229, 38.763721 ], [ -77.421942, 38.764056 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105045621397", "MTFCC": "S1750" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426448, 38.762985 ], [ -77.425504, 38.762349 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477306", "FULLNAME": "Cougar Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.422328, 38.764959 ], [ -77.421942, 38.764056 ], [ -77.421727, 38.763520 ], [ -77.421727, 38.763186 ], [ -77.421942, 38.762550 ], [ -77.422328, 38.762081 ], [ -77.422328, 38.761948 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536129", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.431641, 38.761847 ], [ -77.430696, 38.763085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477443", "FULLNAME": "E Carondelet Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430911, 38.761011 ], [ -77.430182, 38.760709 ], [ -77.429795, 38.760576 ], [ -77.428122, 38.759706 ], [ -77.427649, 38.759572 ], [ -77.427092, 38.759538 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477274", "FULLNAME": "Nancy St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430654, 38.759906 ], [ -77.430139, 38.759772 ], [ -77.428465, 38.758902 ], [ -77.427263, 38.758601 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477391", "FULLNAME": "Michael Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429066, 38.762349 ], [ -77.428122, 38.761780 ], [ -77.427692, 38.761613 ], [ -77.427135, 38.761613 ], [ -77.426834, 38.761613 ], [ -77.426577, 38.761780 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477379", "FULLNAME": "Heather Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427135, 38.761613 ], [ -77.427220, 38.762215 ], [ -77.427392, 38.762516 ], [ -77.427521, 38.762583 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477389", "FULLNAME": "Matthew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426062, 38.758769 ], [ -77.426276, 38.758200 ], [ -77.426233, 38.757731 ], [ -77.426062, 38.757095 ], [ -77.426147, 38.756761 ], [ -77.426405, 38.756326 ], [ -77.426534, 38.756225 ], [ -77.426748, 38.756058 ], [ -77.427263, 38.755924 ], [ -77.428250, 38.755790 ], [ -77.428679, 38.755857 ], [ -77.429109, 38.756024 ], [ -77.429881, 38.756794 ], [ -77.430267, 38.757229 ], [ -77.430654, 38.757831 ], [ -77.430868, 38.758835 ], [ -77.430782, 38.759538 ], [ -77.430654, 38.759906 ], [ -77.430568, 38.760174 ], [ -77.430182, 38.760709 ], [ -77.429709, 38.761513 ], [ -77.429066, 38.762349 ], [ -77.427950, 38.763755 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536656", "FULLNAME": "Brandon St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429709, 38.761513 ], [ -77.428250, 38.760776 ], [ -77.427907, 38.760709 ], [ -77.427135, 38.760709 ], [ -77.426534, 38.760709 ], [ -77.426105, 38.760643 ], [ -77.425547, 38.760509 ], [ -77.424774, 38.760207 ], [ -77.424688, 38.760107 ], [ -77.424817, 38.759940 ], [ -77.424817, 38.759772 ], [ -77.424688, 38.759505 ], [ -77.424560, 38.759371 ], [ -77.424345, 38.759270 ], [ -77.423959, 38.759170 ], [ -77.423487, 38.759270 ], [ -77.423401, 38.759337 ], [ -77.423229, 38.760207 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477287", "FULLNAME": "Steve St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429881, 38.756794 ], [ -77.429280, 38.757196 ], [ -77.428808, 38.757698 ], [ -77.428637, 38.758032 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477221", "FULLNAME": "Jan St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430868, 38.758835 ], [ -77.430611, 38.758869 ], [ -77.430053, 38.758735 ], [ -77.429066, 38.758200 ], [ -77.428637, 38.758032 ], [ -77.427564, 38.757798 ], [ -77.427006, 38.757664 ], [ -77.426534, 38.757664 ], [ -77.426233, 38.757731 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477291", "FULLNAME": "S Whitt Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428679, 38.755857 ], [ -77.428207, 38.756928 ], [ -77.427778, 38.757396 ], [ -77.427564, 38.757798 ], [ -77.427263, 38.758601 ], [ -77.427092, 38.759170 ], [ -77.427092, 38.759538 ], [ -77.427135, 38.760709 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477266", "FULLNAME": "Kevin Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427263, 38.755924 ], [ -77.427135, 38.755790 ], [ -77.427092, 38.755188 ], [ -77.427135, 38.755087 ], [ -77.427607, 38.754652 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477509", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426534, 38.756225 ], [ -77.426105, 38.755957 ], [ -77.425804, 38.755690 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477428", "FULLNAME": "Elizabeth Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426105, 38.760643 ], [ -77.426105, 38.760107 ], [ -77.426019, 38.759973 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679106335", "MTFCC": "S1780" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.422328, 38.761948 ], [ -77.422414, 38.761513 ], [ -77.423100, 38.760877 ], [ -77.423229, 38.760207 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477236", "FULLNAME": "Luke Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.424560, 38.757497 ], [ -77.424817, 38.757597 ], [ -77.425160, 38.757865 ], [ -77.425289, 38.758233 ], [ -77.425203, 38.758400 ], [ -77.425075, 38.758467 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477241", "FULLNAME": "Paul Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426791, 38.756928 ], [ -77.426147, 38.756761 ], [ -77.425590, 38.756694 ], [ -77.425203, 38.756794 ], [ -77.424946, 38.756995 ], [ -77.424560, 38.757497 ], [ -77.424259, 38.757865 ], [ -77.424173, 38.758066 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081513591", "FULLNAME": "Birmingham Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427349, 38.753615 ], [ -77.426276, 38.754820 ], [ -77.425461, 38.755388 ], [ -77.425075, 38.755890 ], [ -77.424388, 38.756593 ], [ -77.424045, 38.757162 ], [ -77.423186, 38.758333 ], [ -77.422800, 38.759036 ], [ -77.422929, 38.759706 ], [ -77.422543, 38.761144 ], [ -77.422285, 38.761379 ], [ -77.420611, 38.762316 ] ] } } +] } +] } +] } diff --git a/tile.cpp b/tile.cpp index 5d4d533..8f7f315 100644 --- a/tile.cpp +++ b/tile.cpp @@ -381,6 +381,7 @@ struct partial_arg { std::vector *partials = NULL; int task = 0; int tasks = 0; + drawvec *shared_nodes; }; drawvec revive_polygon(drawvec &geom, double area, int z, int detail) { @@ -464,7 +465,7 @@ void *partial_feature_worker(void *v) { } if (!already_marked) { - drawvec ngeom = simplify_lines(geom, z, line_detail, !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), (*partials)[i].simplification, t == VT_POLYGON ? 4 : 0); + drawvec ngeom = simplify_lines(geom, z, line_detail, !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), (*partials)[i].simplification, t == VT_POLYGON ? 4 : 0, *(a->shared_nodes)); if (t != VT_POLYGON || ngeom.size() >= 3) { geom = ngeom; @@ -898,7 +899,7 @@ bool find_common_edges(std::vector &partials, int z, int line_detail, d } } if (!(prevent[P_SIMPLIFY] || (z == maxzoom && prevent[P_SIMPLIFY_LOW]) || (z < maxzoom && additional[A_GRID_LOW_ZOOMS]))) { - simplified_arcs[ai->second] = simplify_lines(dv, z, line_detail, !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), simplification, 4); + simplified_arcs[ai->second] = simplify_lines(dv, z, line_detail, !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), simplification, 4, drawvec()); } else { simplified_arcs[ai->second] = dv; } @@ -1763,6 +1764,7 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta std::vector extents; std::map attribute_accum_state; double coalesced_area = 0; + drawvec shared_nodes; int within[child_shards]; std::atomic geompos[child_shards]; @@ -1962,6 +1964,12 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta } if (sf.geometry.size() > 0) { + if (prevent[P_SIMPLIFY_SHARED_NODES]) { + for (auto &g : sf.geometry) { + shared_nodes.push_back(g); + } + } + partial p; p.geoms.push_back(sf.geometry); p.layer = sf.layer; @@ -1991,6 +1999,25 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta coalesced_area = 0; } + { + drawvec just_shared_nodes; + std::sort(shared_nodes.begin(), shared_nodes.end()); + + for (size_t i = 0; i + 1 < shared_nodes.size(); i++) { + if (shared_nodes[i] == shared_nodes[i + 1]) { + just_shared_nodes.push_back(shared_nodes[i]); + + draw d = shared_nodes[i]; + i++; + while (i + 1 < shared_nodes.size() && shared_nodes[i + 1] == d) { + i++; + } + } + } + + shared_nodes = just_shared_nodes; + } + for (size_t i = 0; i < partials.size(); i++) { partial &p = partials[i]; @@ -2073,6 +2100,7 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta args[i].task = i; args[i].tasks = tasks; args[i].partials = &partials; + args[i].shared_nodes = &shared_nodes; if (tasks > 1) { if (pthread_create(&pthreads[i], NULL, partial_feature_worker, &args[i]) != 0) { @@ -2186,7 +2214,7 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta if (layer_features[x].coalesced && layer_features[x].type == VT_LINE) { layer_features[x].geom = remove_noop(layer_features[x].geom, layer_features[x].type, 0); layer_features[x].geom = simplify_lines(layer_features[x].geom, 32, 0, - !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), simplification, layer_features[x].type == VT_POLYGON ? 4 : 0); + !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), simplification, layer_features[x].type == VT_POLYGON ? 4 : 0, shared_nodes); } if (layer_features[x].type == VT_POLYGON) {